Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f38f03e commit f177c2cCopy full SHA for f177c2c
1 file changed
java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt
@@ -628,7 +628,7 @@ class X {
628
params.addAll(parameters)
629
params
630
}
631
- val paramTypeIds = allParams.joinToString { "{${useType(erase(it.type)).javaResult.id}}" }
+ val paramTypeIds = allParams.joinToString(separator = ",") { "{${useType(erase(it.type)).javaResult.id}}" }
632
val labelReturnType = if (name == "<init>") pluginContext.irBuiltIns.unitType else erase(returnType)
633
val returnTypeId = useType(labelReturnType, TypeContext.RETURN).javaResult.id
634
// This suffix is added to generic methods (and constructors) to match the Java extractor's behaviour.
0 commit comments