Package | Description |
---|---|
antlr |
Modifier and Type | Class and Description |
---|---|
class |
TokenStreamBasicFilter
This object is a TokenStream that passes through all
tokens except for those that you tell it to discard.
|
class |
TokenStreamHiddenTokenFilter
This object filters a token stream coming from a lexer
or another TokenStream so that only certain token channels
get transmitted to the parser.
|
class |
TokenStreamRewriteEngine
This token stream tracks the *entire* token stream coming from
a lexer, but does not pass on the whitespace (or whatever else
you want to discard) to the parser.
|
class |
TokenStreamSelector
A token stream MUX (multiplexor) knows about n token streams
and can multiplex them onto the same channel for use by token
stream consumer like a parser.
|