Uses of Interface
org.antlr.runtime.TokenSource
-
Packages that use TokenSource Package Description org.antlr.grammar.v3 org.antlr.runtime org.antlr.runtime.debug org.antlr.tool -
-
Uses of TokenSource in org.antlr.grammar.v3
Classes in org.antlr.grammar.v3 that implement TokenSource Modifier and Type Class Description class
ActionAnalysis
We need to set Rule.referencedPredefinedRuleAttributes before code generation.class
ActionTranslator
class
ANTLRv3Lexer
-
Uses of TokenSource in org.antlr.runtime
Classes in org.antlr.runtime that implement TokenSource Modifier and Type Class Description class
Lexer
A lexer is recognizer that draws input symbols from a character stream.Fields in org.antlr.runtime declared as TokenSource Modifier and Type Field Description protected TokenSource
CommonTokenStream. tokenSource
Methods in org.antlr.runtime that return TokenSource Modifier and Type Method Description TokenSource
CommonTokenStream. getTokenSource()
TokenSource
TokenStream. getTokenSource()
Where is this stream pulling tokens from? This is not the name, but the object that provides Token objects.Methods in org.antlr.runtime with parameters of type TokenSource Modifier and Type Method Description void
CommonTokenStream. setTokenSource(TokenSource tokenSource)
Reset this token stream by setting its token source.Constructors in org.antlr.runtime with parameters of type TokenSource Constructor Description CommonTokenStream(TokenSource tokenSource)
CommonTokenStream(TokenSource tokenSource, int channel)
TokenRewriteStream(TokenSource tokenSource)
TokenRewriteStream(TokenSource tokenSource, int channel)
-
Uses of TokenSource in org.antlr.runtime.debug
Methods in org.antlr.runtime.debug that return TokenSource Modifier and Type Method Description TokenSource
DebugTokenStream. getTokenSource()
-
Uses of TokenSource in org.antlr.tool
Classes in org.antlr.tool that implement TokenSource Modifier and Type Class Description class
Interpreter
The recognition interpreter/engine for grammars.
-