|
Construct lexical analyzer from a string.
|
|
Return NextToken, but without extracting it.
|
|
Extract next token. Skips any whitespace before the token. Returns empty string if end of string is reached. |
|
Extract integer token (skipping whitespace).
|
|
Extract byte in hex (skipping whitespace).
|
|
Extract IpeFixed token (skipping whitespace).
|
|
Extract hexadecimal token (skipping whitespace).
|
|
Extract double token (skipping whitespace).
|
|
Extract next character (not skipping anything).
|
|
Skip over whitespace.
|
|
Operator syntax for GetInt().
|
|
Operator syntax for GetDouble().
|
|
Mark the current position.
|
|
Reset reader to the marked position.
|
|
Return true if at end of string (not even whitespace left).
|