diff options
author | Yury Delendik <ydelendik@mozilla.com> | 2016-04-21 15:31:13 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-21 13:31:13 -0700 |
commit | a4aba7acd77a2e86ae23f243962be78e889c35d3 (patch) | |
tree | 25d67056e13b3ec95c1ba5e710f5b5aaef2de54f /src/js | |
parent | 36bb0ed43c9e0644cc92b6508ec2fff290c17034 (diff) | |
download | binaryen-a4aba7acd77a2e86ae23f243962be78e889c35d3.tar.gz binaryen-a4aba7acd77a2e86ae23f243962be78e889c35d3.tar.bz2 binaryen-a4aba7acd77a2e86ae23f243962be78e889c35d3.zip |
Removes wasm-s-parser debug logging from binaryen.idl. (#373)
Continuation of #345 (see https://github.com/WebAssembly/binaryen/commit/2887883029de293458344a5d564039074d93246e#diff-499c4e70c8aadb9837261ebcc4725f78R262)
Currently building of binaryen.js fails with
"src/../glue.cpp:102:14: error: no matching constructor for initialization of
'wasm::SExpressionWasmBuilder'"
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/binaryen.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/binaryen.idl b/src/js/binaryen.idl index 3d0116db9..c23ffe658 100644 --- a/src/js/binaryen.idl +++ b/src/js/binaryen.idl @@ -57,7 +57,7 @@ interface SExpressionParser { }; interface SExpressionWasmBuilder { - void SExpressionWasmBuilder([Ref] Module wasm, [Ref] Element input, boolean debug); + void SExpressionWasmBuilder([Ref] Module wasm, [Ref] Element input); }; // Wasm printing |