diff options
author | Thomas Lively <tlively@google.com> | 2024-05-29 10:35:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 10:35:25 -0700 |
commit | f622b8e47c69dcbdf2666c795fb3658dc4da52af (patch) | |
tree | 27a0c58cb6b932e8251fa6dd2aa68b41f138a1a1 /test/wasm2js/wasm2js.asserts.js | |
parent | 525f0761496c6aafea80a2d2e8cb709515eb06c5 (diff) | |
download | binaryen-f622b8e47c69dcbdf2666c795fb3658dc4da52af.tar.gz binaryen-f622b8e47c69dcbdf2666c795fb3658dc4da52af.tar.bz2 binaryen-f622b8e47c69dcbdf2666c795fb3658dc4da52af.zip |
Use new wast parser in wasm2js (#6606)
When generating assertions, traverse the `WASTScript` data structure rather than
interleaving assertion parsing with emitting.
Diffstat (limited to 'test/wasm2js/wasm2js.asserts.js')
-rw-r--r-- | test/wasm2js/wasm2js.asserts.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wasm2js/wasm2js.asserts.js b/test/wasm2js/wasm2js.asserts.js index fb6516106..19b97844e 100644 --- a/test/wasm2js/wasm2js.asserts.js +++ b/test/wasm2js/wasm2js.asserts.js @@ -68,9 +68,9 @@ function check1() { return 1 | 0; } -if (!check1()) throw 'assertion failed: ( assert_return ( invoke empty ) )'; +if (!check1()) throw 'assertion failed on line 9'; function check2() { return (retasmFunc0.add(1 | 0, 1 | 0) | 0 | 0) == (2 | 0) | 0; } -if (!check2()) throw 'assertion failed: ( assert_return ( invoke add ( i32.const 1 ) ( i32.const 1 ) ) ( i32.const 2 ) )'; +if (!check2()) throw 'assertion failed on line 10'; |