diff options
Diffstat (limited to 'test/binaryen.js/exception-handling.js')
-rw-r--r-- | test/binaryen.js/exception-handling.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/binaryen.js/exception-handling.js b/test/binaryen.js/exception-handling.js index 40dc9d489..a8d3dd3a4 100644 --- a/test/binaryen.js/exception-handling.js +++ b/test/binaryen.js/exception-handling.js @@ -3,7 +3,7 @@ function cleanInfo(info) { for (var x in info) { // Filter out address pointers and only print meaningful info if (x == 'id' || x == 'type' || x == 'name' || x == 'event' || - x == 'depth' || x == 'hasCatchAll' || x == 'delegateTarget' || + x == 'target' || x == 'hasCatchAll' || x == 'delegateTarget' || x == 'isDelegate') { ret[x] = info[x]; } @@ -21,19 +21,19 @@ module.setFeatures(binaryen.Features.ReferenceTypes | var event_ = module.addEvent("e", 0, binaryen.i32, binaryen.none); -// (try +// (try $l0 // (do // (throw $e (i32.const 0)) // ) // (catch // (drop (pop i32)) -// (rethrow 0) +// (rethrow $l0) // ) // ) var throw_ = module.throw("e", [module.i32.const(0)]); -var rethrow = module.rethrow(0); +var rethrow = module.rethrow("l0"); var try_catch = module.try( - '', + "l0", throw_, ["e"], [ |