mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 14:43:01 +02:00
21 lines
278 B
C++
21 lines
278 B
C++
/*
|
|
* 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;
|
|
struct Interpreter;
|
|
|
|
namespace Wasi {
|
|
struct Implementation;
|
|
}
|
|
|
|
}
|