[JS IR] Don't mark Char as a value class

Char will still be treated as a value class
(see JsInlineClassesUtils.kt)
This commit is contained in:
Sergej Jaskiewicz
2021-12-09 15:16:03 +03:00
committed by Space
parent f99b80c8d2
commit 6dc69adcc9
4 changed files with 22 additions and 9 deletions
+2 -2
View File
@@ -1064,7 +1064,7 @@ public final class ByteArray {
public final operator fun set(index: kotlin.Int, value: kotlin.Byte): kotlin.Unit
}
/*∆*/ public final class Char : kotlin.Comparable<kotlin.Char> {
public final class Char : kotlin.Comparable<kotlin.Char> {
public open override operator fun compareTo(other: kotlin.Char): kotlin.Int
public final operator fun dec(): kotlin.Char
@@ -3231,4 +3231,4 @@ public final annotation class UseExperimental : kotlin.Annotation {
public constructor UseExperimental(vararg markerClass: kotlin.reflect.KClass<out kotlin.Annotation>)
public final val markerClass: kotlin.Array<out kotlin.reflect.KClass<out kotlin.Annotation>> { get; }
}
}