mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-01 05:41:01 +00:00
16 lines
215 B
C
16 lines
215 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;
|
||
|
|
|
||
|
|
}
|