From 14a286971d203e3caf6f49089fe6ddc16024861f Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Tue, 7 May 2019 18:52:57 -0700 Subject: Add except_ref type (#2081) This adds except_ref type, which is a part of the exception handling proposal. --- test/exception-handling.wast.fromBinary | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/exception-handling.wast.fromBinary (limited to 'test/exception-handling.wast.fromBinary') diff --git a/test/exception-handling.wast.fromBinary b/test/exception-handling.wast.fromBinary new file mode 100644 index 000000000..9ee5ee175 --- /dev/null +++ b/test/exception-handling.wast.fromBinary @@ -0,0 +1,8 @@ +(module + (type $0 (func (param except_ref) (result except_ref))) + (memory $0 1 1) + (func $except_ref_test (; 0 ;) (type $0) (param $0 except_ref) (result except_ref) + (local.get $0) + ) +) + -- cgit v1.2.3