Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make try body start with 'do' (#2846) | Heejin Ahn | 2020-05-11 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In WebAssembly/exception-handling#52, We decided to put `try` bodies in a `do` clause to be more consistent with `catch`. - Before ```wast (try ... (catch ... ) ) ``` - After ```wast (try (do ... ) (catch ... ) ) ``` Another upside of this change is when there are multiple instructions within a `try` body, we no longer need to wrap them in a `block`. | ||||
* | Fix misc. tests (#2534) | Heejin Ahn | 2019-12-17 | 1 | -0/+19 |
- Remove a function from memory-packing_all-features.wast, because it does not test anything meaningful after #2529. - Rename a test file to use `--all-features`; it started failing I guess because `exnref` requires also reference type features, but not sure why it was OK so far. |