Skip to content

Commit 34b83f0

Browse files
committed
Fix naming of internal default methods
1 parent 5e18275 commit 34b83f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/kotlin-extractor/src/main/kotlin/KotlinFileExtractor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ open class KotlinFileExtractor(
16831683
}
16841684
}
16851685
} else {
1686-
f.name.asString() + "\$default"
1686+
getFunctionShortName(f).nameInDB + "\$default"
16871687
}
16881688

16891689
private fun getDefaultsMethodLabel(f: IrFunction): Label<out DbCallable> {

0 commit comments

Comments
 (0)