private static int |
TokenStreamImpl.indexOf(TokenType[] tta,
TokenType subject) |
|
boolean |
Parser.peek(TokenType suspected) |
|
int |
Parser.peek(TokenType... suspected) |
|
boolean |
TokenStream.peek(TokenType suspected) |
|
int |
TokenStream.peek(TokenType... suspected) |
Checks whether the type of the next token is any of the suspected; does not consume the next token.
|
boolean |
TokenStreamImpl.peek(TokenType suspected) |
|
int |
TokenStreamImpl.peek(TokenType... suspected) |
|
boolean |
Parser.peekNextButOne(TokenType suspected) |
|
java.lang.String |
Parser.peekRead(TokenType suspected) |
|
java.lang.String |
TokenStream.peekRead(TokenType suspected) |
Checks whether the type of the next token is the suspected; if so, consumes the token.
|
int |
TokenStream.peekRead(TokenType... suspected) |
Checks whether the type of the next token is one of the suspected; if so, consumes the token.
|
java.lang.String |
TokenStreamImpl.peekRead(TokenType suspected) |
|
int |
TokenStreamImpl.peekRead(TokenType... suspected) |
|
java.lang.String |
Parser.read(TokenType expected) |
|
java.lang.String |
TokenStream.read(TokenType expected) |
Verifies that the type of the next token is the expected, and consumes the token.
|
int |
TokenStream.read(TokenType... expected) |
Verifies that the type of the next token is one of the expected, and consumes the token.
|
java.lang.String |
TokenStreamImpl.read(TokenType expected) |
|
int |
TokenStreamImpl.read(TokenType... expected) |
|
private Token |
Scanner.token(TokenType type,
java.lang.String value) |
|