2021-10-31 19:06:35 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace Wasm {
|
|
|
|
|
|
|
|
|
|
class AbstractMachine;
|
|
|
|
|
class Validator;
|
|
|
|
|
struct ValidationError;
|
2023-04-04 18:44:43 -03:00
|
|
|
struct Interpreter;
|
|
|
|
|
|
|
|
|
|
namespace Wasi {
|
2025-05-13 08:06:33 -03:00
|
|
|
|
2023-04-04 18:44:43 -03:00
|
|
|
struct Implementation;
|
2025-05-13 08:06:33 -03:00
|
|
|
|
2023-04-04 18:44:43 -03:00
|
|
|
}
|
2021-10-31 19:06:35 -03:00
|
|
|
|
|
|
|
|
}
|