We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e50a06f commit 8dde029Copy full SHA for 8dde029
index.js
@@ -250,6 +250,8 @@ function parseValueType(parseState) {
250
return "funcref";
251
case 0x6f:
252
return "externref";
253
+ case 0x7B:
254
+ return "v128";
255
default:
256
throw new Error(`Unknown value type ${type}`);
257
}
test/check.mjs
@@ -16,6 +16,7 @@ function prepare(testsuitePath) {
16
"utf8-import-field.wast",
17
"utf8-import-module.wast",
18
"linking.wast",
19
+ "simd_linking.wast",
20
]
21
22
for (const file of files) {
0 commit comments