Fixed EA-75877
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
package org.jetbrains.kotlin.renderer
|
||||
|
||||
import org.jetbrains.kotlin.descriptors.*
|
||||
import org.jetbrains.kotlin.name.FqName
|
||||
import org.jetbrains.kotlin.name.FqNameUnsafe
|
||||
import org.jetbrains.kotlin.name.Name
|
||||
|
||||
@@ -51,6 +52,10 @@ public fun FqNameUnsafe.render(): String {
|
||||
return renderFqName(pathSegments())
|
||||
}
|
||||
|
||||
public fun FqName.render(): String {
|
||||
return renderFqName(pathSegments())
|
||||
}
|
||||
|
||||
public fun renderFqName(pathSegments: List<Name>): String {
|
||||
return buildString {
|
||||
for (element in pathSegments) {
|
||||
|
||||
Reference in New Issue
Block a user