implement native type compilation

This commit is contained in:
Alex Zenla
2025-07-20 19:57:09 -07:00
parent f7ff896f81
commit 837e0c1b38
19 changed files with 133 additions and 20 deletions

View File

@ -16,6 +16,9 @@ class ExternalSymbolUsageAnalyzer : FunctionLevelVisitor<Unit>() {
internalSymbols.removeLast()
}
override fun visitTypeDefinition(node: TypeDefinition) {
}
override fun visitLetDefinition(node: LetDefinition) {
node.value.visit(this)
}