[IR Serialization] Removed native-specific hack in mangler
This commit is contained in:
-1
@@ -209,7 +209,6 @@ abstract class KotlinManglerImpl : KotlinMangler {
|
|||||||
val signatureSuffix =
|
val signatureSuffix =
|
||||||
when {
|
when {
|
||||||
this.typeParameters.isNotEmpty() -> "Generic"
|
this.typeParameters.isNotEmpty() -> "Generic"
|
||||||
returnType.isInlined -> "ValueType"
|
|
||||||
!returnType.isUnitOrNullableUnit() -> typeToHashString(returnType, typeParameterNamer)
|
!returnType.isUnitOrNullableUnit() -> typeToHashString(returnType, typeParameterNamer)
|
||||||
else -> ""
|
else -> ""
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ fun String.parseKonanAbiVersion(): KotlinAbiVersion {
|
|||||||
|
|
||||||
data class KotlinAbiVersion(val version: Int) {
|
data class KotlinAbiVersion(val version: Int) {
|
||||||
companion object {
|
companion object {
|
||||||
val CURRENT = KotlinAbiVersion(22)
|
val CURRENT = KotlinAbiVersion(23)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun toString() = "$version"
|
override fun toString() = "$version"
|
||||||
|
|||||||
Reference in New Issue
Block a user