summaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-04-17 15:06:41 -0700
committerBen Smith <binji@chromium.org>2016-04-17 15:06:41 -0700
commit4bd1fede657db68a98522c39be866f384fd2a576 (patch)
tree76c6f18766c6bbb53fa09636bf71eabaf5ab1537 /demo
parent31633c76efabe9264565dfe284c6975cc9837227 (diff)
downloadwabt-4bd1fede657db68a98522c39be866f384fd2a576.tar.gz
wabt-4bd1fede657db68a98522c39be866f384fd2a576.tar.bz2
wabt-4bd1fede657db68a98522c39be866f384fd2a576.zip
display binary writer logs in demo
Diffstat (limited to 'demo')
-rw-r--r--demo/index.html40
1 files changed, 21 insertions, 19 deletions
diff --git a/demo/index.html b/demo/index.html
index 7a1b0829..41e27737 100644
--- a/demo/index.html
+++ b/demo/index.html
@@ -108,33 +108,35 @@
function compile(text) {
output.textContent = '';
- var buf = wasm.Buffer.fromString(text);
- var lexer = wasm.Lexer.fromBuffer(allocator, 'test.wast', buf);
try {
+ var buf = wasm.Buffer.fromString(text);
+ var lexer = wasm.Lexer.fromBuffer(allocator, 'test.wast', buf);
var script = wasm.parse(lexer, eh);
wasm.checkAst(lexer, script, eh);
-
- try {
- var memoryWriter = new wasm.MemoryWriter(allocator);
- var writer = memoryWriter.base;
- var options = new wasm.WriteBinaryOptions({logWrites: true});
- wasm.writeBinaryScript(allocator, writer, script, options);
-
- output.textContent = 'done';
- } catch (e) {
- } finally {
- options.$destroy();
- memoryWriter.$destroy();
- }
-
+ var memoryWriter = new wasm.MemoryWriter(allocator);
+ var jsWriter = new wasm.JSStringWriter();
+ var logStream = new wasm.Stream(jsWriter.writer);
+ var options = new wasm.WriteBinaryOptions({logStream: logStream});
+ wasm.writeBinaryScript(allocator, memoryWriter.base, script, options);
+ output.textContent = jsWriter.string;
} catch (e) {
- // swallow error
+ output.textContent += e.toString();
} finally {
+ if (options)
+ options.$destroy();
+ if (logStream)
+ logStream.$destroy();
if (script)
script.$destroy();
+ if (jsWriter)
+ jsWriter.$destroy();
+ if (memoryWriter)
+ memoryWriter.$destroy();
+ if (lexer)
+ lexer.$destroy();
+ if (buf)
+ buf.$destroy();
}
- lexer.$destroy();
- buf.$destroy();
}
function onInputInput(e) {