diff options
author | Ben Smith <binji@chromium.org> | 2016-05-06 01:02:04 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-05-06 01:02:04 -0700 |
commit | decc58fed3b2de7e952a143b87ccf7e0b38da36c (patch) | |
tree | 0353e2a3e777db28ad73fa2bad920397078edada /src | |
parent | 5b49663185fbf0e33fdfeacef07e166b98ac1e34 (diff) | |
download | wabt-decc58fed3b2de7e952a143b87ccf7e0b38da36c.tar.gz wabt-decc58fed3b2de7e952a143b87ccf7e0b38da36c.tar.bz2 wabt-decc58fed3b2de7e952a143b87ccf7e0b38da36c.zip |
some minor fixes for the emscripten demo
Diffstat (limited to 'src')
-rw-r--r-- | src/emscripten-exported.json | 1 | ||||
-rw-r--r-- | src/wasm.js | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/emscripten-exported.json b/src/emscripten-exported.json index 2a84cda8..28002175 100644 --- a/src/emscripten-exported.json +++ b/src/emscripten-exported.json @@ -12,7 +12,6 @@ "_wasm_init_mem_writer", "_wasm_init_stream", "_wasm_init_stack_allocator", -"_wasm_mark_used_blocks", "_wasm_new_ast_buffer_lexer", "_wasm_offsetof_allocator_alloc", "_wasm_offsetof_allocator_destroy", diff --git a/src/wasm.js b/src/wasm.js index 6761d0f5..38ca2f8f 100644 --- a/src/wasm.js +++ b/src/wasm.js @@ -227,7 +227,7 @@ var JSStringWriter = function() { JSStringWriter.prototype = Object.create(JSWriter.prototype); -// AstLexer /////////////////////////////////////////////////////////////////////// +// AstLexer //////////////////////////////////////////////////////////////////// var AstLexer = function() { throw "AstLexer must be created with $fromBuffer"; }; |