diff options
Diffstat (limited to 'src/wasm-interpreter.cpp')
-rw-r--r-- | src/wasm-interpreter.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wasm-interpreter.cpp b/src/wasm-interpreter.cpp index ec7197203..d4451d55c 100644 --- a/src/wasm-interpreter.cpp +++ b/src/wasm-interpreter.cpp @@ -9,7 +9,10 @@ using namespace wasm; namespace wasm { -// An instance of a WebAssembly module +// +// An instance of a WebAssembly module, which can execute it via AST interpretation +// + class ModuleInstance { public: typedef std::vector<Literal> LiteralList; |