summaryrefslogtreecommitdiff
path: root/test/exception-handling.wast.fromBinary.noDebugInfo
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2019-07-14 15:25:16 -0700
committerGitHub <noreply@github.com>2019-07-14 15:25:16 -0700
commitcdab4ef130626958790cb2601209f14d192fa10a (patch)
tree420e95f5effa60a9fd0742ffd4f45735e2975ed8 /test/exception-handling.wast.fromBinary.noDebugInfo
parent8d13b5a9c59b5b215583568ddd117a626cc8f59f (diff)
downloadbinaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.gz
binaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.bz2
binaryen-cdab4ef130626958790cb2601209f14d192fa10a.zip
Rename except_ref type to exnref (#2224)
In WebAssembly/exception-handling#79 we agreed to rename `except_ref` type to `exnref`.
Diffstat (limited to 'test/exception-handling.wast.fromBinary.noDebugInfo')
-rw-r--r--test/exception-handling.wast.fromBinary.noDebugInfo4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/exception-handling.wast.fromBinary.noDebugInfo b/test/exception-handling.wast.fromBinary.noDebugInfo
index 0f2c6e467..11555cd10 100644
--- a/test/exception-handling.wast.fromBinary.noDebugInfo
+++ b/test/exception-handling.wast.fromBinary.noDebugInfo
@@ -1,7 +1,7 @@
(module
- (type $0 (func (param except_ref) (result except_ref)))
+ (type $0 (func (param exnref) (result exnref)))
(memory $0 1 1)
- (func $0 (; 0 ;) (type $0) (param $0 except_ref) (result except_ref)
+ (func $0 (; 0 ;) (type $0) (param $0 exnref) (result exnref)
(local.get $0)
)
)