diff options
author | Heejin Ahn <aheejin@gmail.com> | 2020-01-08 15:08:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 15:08:07 -0800 |
commit | f644a0324abd8f957bb1bc2bb79bbdad4956cd0e (patch) | |
tree | 0bfe692e5554a94b66300f3aca69b84d5b25f434 /README.md | |
parent | 52953f3fceee35f4a91f2a701d655353851ba59e (diff) | |
download | wabt-f644a0324abd8f957bb1bc2bb79bbdad4956cd0e.tar.gz wabt-f644a0324abd8f957bb1bc2bb79bbdad4956cd0e.tar.bz2 wabt-f644a0324abd8f957bb1bc2bb79bbdad4956cd0e.zip |
Several fixes for reference types (#1278)
- Allow `ref.func` for global initialization expressions
- Allow `nullref` as a full-fledged type, after
WebAssembly/reference-types#66
- Enable reference types when exnref is used (The reference types
proposal is a prerequisite of the EH proposal)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ Wabt has been compiled to JavaScript via emscripten. Some of the functionality i | [multi-value][] | `--enable-multi-value` | ✓ | ✓ | ✓ | ✓ | | [tail-call][] | `--enable-tail-call` | ✓ | ✓ | ✓ | ✓ | | [bulk memory][] | `--enable-bulk-memory` | ✓ | ✓ | ✓ | ✓ | -| [reference types][] | `--enable-reference-types` | ✓ | ✓ | ✓ | | +| [reference types][] | `--enable-reference-types` | ✓ | ✓ | ✓ | ✓ | | [annotations][] | `--enable-annotations` | | ✓ | | | [exception handling]: https://github.com/WebAssembly/exception-handling |