mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 00:23:20 +00:00
18 lines
263 B
C
18 lines
263 B
C
![]() |
/*
|
||
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibWasm/AbstractMachine/Configuration.h>
|
||
|
|
||
|
namespace Wasm {
|
||
|
|
||
|
struct Interpreter {
|
||
|
void interpret(Configuration&);
|
||
|
};
|
||
|
|
||
|
}
|