JS: fix tests related to 1.3 migration

This commit is contained in:
Anton Bannykh
2018-08-30 18:28:50 +03:00
committed by Zalim Bashorov
parent 3a8499b10e
commit e7f9727783
4 changed files with 31 additions and 20 deletions
+12
View File
@@ -61,6 +61,18 @@ public class Char(value: Int) : Comparable<Char> {
}
companion object {
/**
* The minimum value of a character code unit.
*/
@SinceKotlin("1.3")
public const val MIN_VALUE: Char = '\u0000'
/**
* The maximum value of a character code unit.
*/
@SinceKotlin("1.3")
public const val MAX_VALUE: Char = '\uFFFF'
/**
* The minimum value of a Unicode high-surrogate code unit.
*/