[K/N] Remove Char.isIdentifierIgnorable() function

As a part of efforts to stabilize K/N stdlib.
This commit is contained in:
Abduqodiri Qurbonzoda
2023-04-08 23:17:05 +03:00
committed by Space Team
parent 88181404df
commit e20b1239fe
2 changed files with 0 additions and 12 deletions
@@ -339,11 +339,6 @@ KBoolean Kotlin_String_unsafeRangeEquals(KString thiz, KInt thizOffset, KString
) == 0;
}
KBoolean Kotlin_Char_isIdentifierIgnorable(KChar ch) {
RuntimeAssert(false, "Kotlin_Char_isIdentifierIgnorable() is not implemented");
return false;
}
KBoolean Kotlin_Char_isISOControl(KChar ch) {
return (ch <= 0x1F) || (ch >= 0x7F && ch <= 0x9F);
}
@@ -19,13 +19,6 @@ external public actual fun Char.isHighSurrogate(): Boolean
@GCUnsafeCall("Kotlin_Char_isLowSurrogate")
external public actual fun Char.isLowSurrogate(): Boolean
/**
* Returns `true` if this character (Unicode code point) should be regarded as an ignorable
* character in a Java identifier or a Unicode identifier.
*/
@GCUnsafeCall("Kotlin_Char_isIdentifierIgnorable")
external public fun Char.isIdentifierIgnorable(): Boolean
/**
* Returns `true` if this character is an ISO control character.
*