Package | Description |
---|---|
antlr | |
antlr.debug |
Modifier and Type | Method and Description |
---|---|
void |
TreeParser.match(AST t,
BitSet b)
Make sure current lookahead symbol matches the given set
Throw an exception upon mismatch, which is catch by either the
error handler or by the syntactic predicate.
|
protected void |
TreeParser.match(AST t,
int ttype) |
void |
Parser.match(BitSet b)
Make sure current lookahead symbol matches the given set
Throw an exception upon mismatch, which is catch by either the
error handler or by the syntactic predicate.
|
void |
Parser.match(int t)
Make sure current lookahead symbol matches token type t.
|
protected void |
TreeParser.matchNot(AST t,
int ttype) |
void |
Parser.matchNot(int t) |
Modifier and Type | Method and Description |
---|---|
void |
LLkDebuggingParser.match(BitSet b)
Make sure current lookahead symbol matches the given set
Throw an exception upon mismatch, which is catch by either the
error handler or by the syntactic predicate.
|
void |
ParseTreeDebugParser.match(BitSet bitSet) |
void |
LLkDebuggingParser.match(int t)
Make sure current lookahead symbol matches token type t.
|
void |
ParseTreeDebugParser.match(int i) |
void |
LLkDebuggingParser.matchNot(int t) |
void |
ParseTreeDebugParser.matchNot(int i) |