|
@@ -53,7 +53,7 @@ extern class String {
|
|
Returns the empty String if outside of String bounds.
|
|
Returns the empty String if outside of String bounds.
|
|
**/
|
|
**/
|
|
function charAt( index : Int) : String;
|
|
function charAt( index : Int) : String;
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
Returns the character code at the given position.
|
|
Returns the character code at the given position.
|
|
Returns [null] if outside of String bounds.
|
|
Returns [null] if outside of String bounds.
|
|
@@ -89,4 +89,6 @@ extern class String {
|
|
**/
|
|
**/
|
|
function toString() : String;
|
|
function toString() : String;
|
|
|
|
|
|
|
|
+ static function fromCharCode( code : Int ) : String;
|
|
|
|
+
|
|
}
|
|
}
|