Method | Description | |
---|---|---|
Lexer ( string configuration ) : System |
Default constructor.
|
|
MoveNext ( ) : bool |
Advances the lexer to the next token.
|
|
Parse ( ) : string |
Parse - move to next token.
|
|
Parse ( string token ) : void |
Parse given token
|
|
ParseInt ( ) : int |
Try parsing current as int
|
|
SubString ( int start, int length ) : string |
Substring facility
|
Method | Description | |
---|---|---|
ParseNext ( ) : string |
Parses the next token
|
|
ParseString ( ) : string |
Parses a string literal
|
public Lexer ( string configuration ) : System | ||
configuration | string | the configuration string to parse |
return | System |
public SubString ( int start, int length ) : string | ||
start | int | |
length | int | |
return | string |