[WASM] Regex std implementation

This commit is contained in:
Igor Yakovlev
2021-11-26 15:23:40 +01:00
committed by TeamCityServer
parent 4f9b54da26
commit d55e16a030
78 changed files with 3403 additions and 1286 deletions
+13 -3
View File
@@ -144,17 +144,27 @@ public class Char private constructor(public val value: Char) : Comparable<Char>
/**
* The minimum value of a supplementary code point, `\u0x10000`.
*/
public const val MIN_SUPPLEMENTARY_CODE_POINT: Int = 0x10000
internal const val MIN_SUPPLEMENTARY_CODE_POINT: Int = 0x10000
/**
* The minimum value of a Unicode code point.
*/
internal const val MIN_CODE_POINT = 0x000000
/**
* The maximum value of a Unicode code point.
*/
internal const val MAX_CODE_POINT = 0X10FFFF
/**
* The minimum radix available for conversion to and from strings.
*/
public const val MIN_RADIX: Int = 2
internal const val MIN_RADIX: Int = 2
/**
* The maximum radix available for conversion to and from strings.
*/
public const val MAX_RADIX: Int = 36
internal const val MAX_RADIX: Int = 36
/**
* The number of bytes used to represent a Char in a binary form.