mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 13:11:32 +00:00
implement java native type support
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user