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 a84d246 commit 44ca2d3Copy full SHA for 44ca2d3
js/src/jit-test/lib/wasm-binary.js
@@ -41,7 +41,7 @@ const F32Code = 0x7d;
41
const F64Code = 0x7c;
42
const AnyFuncCode = 0x70;
43
const AnyrefCode = 0x6f;
44
-const RefCode = 0x6e;
+const RefCode = 0x6d;
45
const FuncCode = 0x60;
46
const VoidCode = 0x40;
47
js/src/wasm/WasmConstants.h
@@ -62,10 +62,13 @@ enum class TypeCode {
62
FuncRef = 0x70,
63
64
65
- AnyRef = 0x6f,
+ AnyRef = 0x6f,
66
67
68
- Ref = 0x6e,
+ NullRef = 0x6e,
69
+
70
71
+ Ref = 0x6d,
72
73
74
Func = 0x60,
@@ -76,9 +79,6 @@ enum class TypeCode {
76
79
77
80
BlockVoid = 0x40,
78
81
-
- NullRef = 0x39,
82
Limit = 0x80
83
};
84
0 commit comments