summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-05-06 01:02:04 -0700
committerBen Smith <binji@chromium.org>2016-05-06 01:02:04 -0700
commitdecc58fed3b2de7e952a143b87ccf7e0b38da36c (patch)
tree0353e2a3e777db28ad73fa2bad920397078edada /src
parent5b49663185fbf0e33fdfeacef07e166b98ac1e34 (diff)
downloadwabt-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.json1
-rw-r--r--src/wasm.js2
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";
};