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 /src/wast-parser.h | |
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 'src/wast-parser.h')
-rw-r--r-- | src/wast-parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wast-parser.h b/src/wast-parser.h index 63423316..ea762357 100644 --- a/src/wast-parser.h +++ b/src/wast-parser.h @@ -145,7 +145,7 @@ class WastParser { Result ParseModuleField(Module*); Result ParseDataModuleField(Module*); Result ParseElemModuleField(Module*); - Result ParseEventModuleField(Module*); + Result ParseTagModuleField(Module*); Result ParseExportModuleField(Module*); Result ParseFuncModuleField(Module*); Result ParseTypeModuleField(Module*); |