summaryrefslogtreecommitdiff
path: root/test/passes/legalize-js-interface_all-features.wast
Commit message (Collapse)AuthorAgeFilesLines
* Add support for reference types proposal (#2451)Heejin Ahn2019-12-301-0/+31
This adds support for the reference type proposal. This includes support for all reference types (`anyref`, `funcref`(=`anyfunc`), and `nullref`) and four new instructions: `ref.null`, `ref.is_null`, `ref.func`, and new typed `select`. This also adds subtype relationship support between reference types. This does not include table instructions yet. This also does not include wasm2js support. Fixes #2444 and fixes #2447.