summaryrefslogtreecommitdiff
path: root/test/exception-handling.wast
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
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')
-rw-r--r--test/exception-handling.wast2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/exception-handling.wast b/test/exception-handling.wast
index ec5c294fc..63d2bdc3d 100644
--- a/test/exception-handling.wast
+++ b/test/exception-handling.wast
@@ -1,6 +1,6 @@
(module
(memory 1 1)
- (func $except_ref_test (param $0 except_ref) (result except_ref)
+ (func $exnref_test (param $0 exnref) (result exnref)
(local.get $0)
)
)