diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm-interpreter.h (renamed from src/wasm-interpreter.cpp) | 5 | ||||
-rw-r--r-- | src/wasm-js.cpp | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/wasm-interpreter.cpp b/src/wasm-interpreter.h index d4451d55c..ede2f00df 100644 --- a/src/wasm-interpreter.cpp +++ b/src/wasm-interpreter.h @@ -4,11 +4,10 @@ #include "wasm.h" -using namespace cashew; -using namespace wasm; - namespace wasm { +using namespace cashew; + // // An instance of a WebAssembly module, which can execute it via AST interpretation // diff --git a/src/wasm-js.cpp b/src/wasm-js.cpp new file mode 100644 index 000000000..ccc589485 --- /dev/null +++ b/src/wasm-js.cpp @@ -0,0 +1,4 @@ + +#include "wasm-interpreter.h" + + |