mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:27:35 +00:00
LibWasm: Implement module validation
This commit is contained in:
parent
30736c39b9
commit
7d1142e2c8
9 changed files with 3113 additions and 2 deletions
15
Userland/Libraries/LibWasm/Forward.h
Normal file
15
Userland/Libraries/LibWasm/Forward.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* 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;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue