compiler: full support for IR based compilation

This commit is contained in:
2023-11-23 21:48:10 -08:00
parent 2d88666f05
commit 8951c3cd60
32 changed files with 554 additions and 400 deletions

View File

@ -18,4 +18,6 @@ class ScopeSymbol(val slabScope: SlabScope, val definition: Definition) {
result = 31 * result + symbol.hashCode()
return result
}
override fun toString(): String = "ScopeSymbol(${symbol.id})"
}