diff options
author | Thomas Lively <tlively@google.com> | 2023-09-18 10:45:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 10:45:36 -0700 |
commit | cd94f8af963ea8233fc15db35ff8d9e70aff22cf (patch) | |
tree | 044d2a677ab589e49fd56420b1cc570a3cc32418 /test/ctor-eval | |
parent | 16a59938563c93d8459bf36679c83497aeba7cc7 (diff) | |
download | binaryen-cd94f8af963ea8233fc15db35ff8d9e70aff22cf.tar.gz binaryen-cd94f8af963ea8233fc15db35ff8d9e70aff22cf.tar.bz2 binaryen-cd94f8af963ea8233fc15db35ff8d9e70aff22cf.zip |
Remove legacy type defintion text syntax (#5948)
Remove support for the "struct_subtype", "array_subtype", "func_subtype", and
"extends" notations we used at various times to declare WasmGC types, leaving
only support for the standard text fromat for declaring types. Update all the
tests using the old formats and delete tests that existed solely to test the old
formats.
Diffstat (limited to 'test/ctor-eval')
-rw-r--r-- | test/ctor-eval/gc-2.wast | 2 | ||||
-rw-r--r-- | test/ctor-eval/gc.wast | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/test/ctor-eval/gc-2.wast b/test/ctor-eval/gc-2.wast index 114254d3f..731f70468 100644 --- a/test/ctor-eval/gc-2.wast +++ b/test/ctor-eval/gc-2.wast @@ -1,5 +1,5 @@ (module - (type $struct (struct_subtype (field i32) data)) + (type $struct (sub (struct (field i32)))) (import "import" "import" (func $import (param anyref))) diff --git a/test/ctor-eval/gc.wast b/test/ctor-eval/gc.wast index 965f6f38a..46ce6b49a 100644 --- a/test/ctor-eval/gc.wast +++ b/test/ctor-eval/gc.wast @@ -1,5 +1,5 @@ (module - (type $struct (struct_subtype (field i32) data)) + (type $struct (sub (struct (field i32)))) (import "import" "import" (func $import (param anyref))) @@ -62,4 +62,3 @@ ) ) ) - |