1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +00:00

LibWasm: Move Wasm::BytecodeInterpreter into its own header

This commit is contained in:
Sahan Fernando 2021-06-04 21:54:20 +10:00 committed by Ali Mohammad Pur
parent 94551149d1
commit d02e7b3811
8 changed files with 1074 additions and 1049 deletions

View file

@ -4,9 +4,10 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "Interpreter.h"
#include <LibWasm/AbstractMachine/AbstractMachine.h>
#include <LibWasm/AbstractMachine/BytecodeInterpreter.h>
#include <LibWasm/AbstractMachine/Configuration.h>
#include <LibWasm/AbstractMachine/Interpreter.h>
#include <LibWasm/Types.h>
namespace Wasm {