summaryrefslogtreecommitdiff
path: root/test/parse/module/bad-array-no-fields.txt
Commit message (Collapse)AuthorAgeFilesLines
* binary/wat: Implement EHv4 (#2470)Soni L.2024-11-201-1/+1
| | | | This pull request implements EHv4. Binary is mostly untested until interp is working.
* List funcref as one of the expected value types in ↵Alex Bradbury2022-05-271-1/+1
| | | | | WastParser::ParseValueType (#1928) Previously, externref was listed but not funcref.
* Reference types changes to remove subtyping (#1407)Ben Smith2020-05-281-1/+1
| | | | | | | | Main changes: * Rename `anyref` -> `externref` * Remove `nullref` * Rename `hostref` -> `externref` * `ref.null` and `ref.is_null` now have "ref kind" parameter * Add ref kind keywords: `func`, `extern`, `exn`
* Parse ArrayTypes (#1364)Ben Smith2020-03-231-0/+9
The following formats are supported: * (type (array i32)) * (type (array (field i32))) * (type (array (field (mut i32)))) This PR adds support for reading/writing binary and text, but no interpreter support yet.