mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2026-02-04 02:20:19 +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