| Package | com.godpaper.as3.serialization |
| Class | public class PGNTokenizer |
| Inheritance | PGNTokenizer Object |
| Method | Defined By | ||
|---|---|---|---|
PGNTokenizer(s:String, strict:Boolean)
Constructs a new PGNDecoder to parse a PGN string
into a native object. | PGNTokenizer | ||
Gets the next token in the input sting and advances
the character to the next character after the token
| PGNTokenizer | ||
parseError(message:String):void
Raises a parsing error with a specified message, tacking
on the error location and the original string. | PGNTokenizer | ||
unescapeString(input:String):String
Convert all JavaScript escape characters into normal characters
| PGNTokenizer | ||
| PGNTokenizer | () | Constructor |
public function PGNTokenizer(s:String, strict:Boolean)Constructs a new PGNDecoder to parse a PGN string into a native object.
Parameterss:String — The PGN string to be converted
into a native object
| |
strict:Boolean |
| getNextToken | () | method |
public function getNextToken():PGNTokenGets the next token in the input sting and advances the character to the next character after the token
ReturnsPGNToken |
| parseError | () | method |
public final function parseError(message:String):voidRaises a parsing error with a specified message, tacking on the error location and the original string.
Parameters
message:String — The message indicating why the error occurred
|
| unescapeString | () | method |
public function unescapeString(input:String):StringConvert all JavaScript escape characters into normal characters
Parameters
input:String — The input string to convert
|
String — Original string with escape characters replaced by real characters
|