diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-06-22 13:06:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 13:06:29 -0700 |
commit | 950042585626bc639c4b330bd47c7b9be4e11bac (patch) | |
tree | 686779003eb850260a004678e5d5663ba19d0c43 /test/desugar | |
parent | c6cd63316ac53208900cda4d1089a22618b85256 (diff) | |
download | wabt-950042585626bc639c4b330bd47c7b9be4e11bac.tar.gz wabt-950042585626bc639c4b330bd47c7b9be4e11bac.tar.bz2 wabt-950042585626bc639c4b330bd47c7b9be4e11bac.zip |
[EH] Replace event with tag (#1678)
We recently decided to change 'event' to 'tag', and 'event section' to
'tag section', out of the rationale that the section contains a
generalized tag that references a type, which may be used for something
other than exceptions, and the name 'event' can be confusing in the web
context.
See
- https://github.com/WebAssembly/exception-handling/issues/159#issuecomment-857910130
- https://github.com/WebAssembly/exception-handling/pull/161
Diffstat (limited to 'test/desugar')
-rw-r--r-- | test/desugar/try.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/desugar/try.txt b/test/desugar/try.txt index ded7a240..dfe2fee3 100644 --- a/test/desugar/try.txt +++ b/test/desugar/try.txt @@ -1,7 +1,7 @@ ;;; TOOL: wat-desugar ;;; ARGS: --enable-exceptions (module - (event $ex (param i32)) + (tag $ex (param i32)) (func (result i32) try $try1 (result i32) nop @@ -13,7 +13,7 @@ ) (;; STDOUT ;;; (module - (event $ex (param i32)) + (tag $ex (param i32)) (func (;0;) (result i32) try $try1 (result i32) nop |