[Wasm] Rename dateref to structref

This commit is contained in:
Igor Yakovlev
2023-05-18 19:37:02 +02:00
committed by Space Team
parent 1e0be4e0af
commit 1749bafc30
9 changed files with 31 additions and 35 deletions
@@ -35,7 +35,7 @@ data class WasmRefType(val heapType: WasmHeapType) : WasmType("ref", -0x15)
object WasmI31Ref : WasmType("i31ref", -0x16)
@Suppress("unused")
object WasmDataRef : WasmType("dataref", -0x19)
object WasmStructRef : WasmType("structref", -0x19)
sealed class WasmHeapType {
data class Type(val type: WasmSymbolReadOnly<WasmTypeDeclaration>) : WasmHeapType() {
@@ -49,7 +49,7 @@ sealed class WasmHeapType {
object Extern : Simple("extern", -0x11)
object Any : Simple("any", -0x12)
object Eq : Simple("eq", -0x13)
object Data : Simple("data", -0x19)
object Struct : Simple("struct", -0x19)
object NullNone : Simple("nullref", -0x1b)
object NullNoExtern : Simple("nullexternref", -0x17)