implement java native type support

This commit is contained in:
Alex Zenla
2025-07-24 23:16:50 -07:00
parent e86b800a7d
commit 60c7b2d4be
7 changed files with 60 additions and 29 deletions

View File

@ -12,7 +12,9 @@ class ExternalSymbolUsageAnalyzer : FunctionLevelVisitor<Unit>() {
override fun visitFunctionDefinition(node: FunctionDefinition) {
for (argument in node.arguments) {
visit(argument.typeSpec!!)
if (argument.typeSpec != null) {
visit(argument.typeSpec!!)
}
}
if (node.returnType != null) {