[K/N] Remove Char.isIdentifierIgnorable() function
As a part of efforts to stabilize K/N stdlib.
This commit is contained in:
committed by
Space Team
parent
88181404df
commit
e20b1239fe
@@ -339,11 +339,6 @@ KBoolean Kotlin_String_unsafeRangeEquals(KString thiz, KInt thizOffset, KString
|
|||||||
) == 0;
|
) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
KBoolean Kotlin_Char_isIdentifierIgnorable(KChar ch) {
|
|
||||||
RuntimeAssert(false, "Kotlin_Char_isIdentifierIgnorable() is not implemented");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
KBoolean Kotlin_Char_isISOControl(KChar ch) {
|
KBoolean Kotlin_Char_isISOControl(KChar ch) {
|
||||||
return (ch <= 0x1F) || (ch >= 0x7F && ch <= 0x9F);
|
return (ch <= 0x1F) || (ch >= 0x7F && ch <= 0x9F);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,13 +19,6 @@ external public actual fun Char.isHighSurrogate(): Boolean
|
|||||||
@GCUnsafeCall("Kotlin_Char_isLowSurrogate")
|
@GCUnsafeCall("Kotlin_Char_isLowSurrogate")
|
||||||
external public actual fun Char.isLowSurrogate(): Boolean
|
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.
|
* Returns `true` if this character is an ISO control character.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user