[Wasm] Support packed integer class fields

This commit is contained in:
Svyatoslav Kuzmich
2020-12-08 15:53:15 +03:00
parent 28168bf230
commit 51e8d782b0
6 changed files with 37 additions and 5 deletions
@@ -21,7 +21,7 @@ object WasmF32 : WasmType("f32", -0x3)
object WasmF64 : WasmType("f64", -0x4)
object WasmV128 : WasmType("v128", -0x5)
object WasmI8 : WasmType("i8", -0x6)
object WasmI16 : WasmType("i8", -0x7)
object WasmI16 : WasmType("i16", -0x7)
object WasmFuncRef : WasmType("funcref", -0x10)
object WasmExternRef : WasmType("externref", -0x11)
object WasmAnyRef : WasmType("anyref", -0x12)