Uses of Interface
org.antlr.runtime.TokenSource
-
Packages that use TokenSource Package Description org.antlr.grammar.v3 org.antlr.gunit org.antlr.gunit.swingui.parsers 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
ANTLRLexer
class
ANTLRv3Lexer
-
Uses of TokenSource in org.antlr.gunit
Classes in org.antlr.gunit that implement TokenSource Modifier and Type Class Description class
gUnitLexer
-
Uses of TokenSource in org.antlr.gunit.swingui.parsers
Classes in org.antlr.gunit.swingui.parsers that implement TokenSource Modifier and Type Class Description class
ANTLRv3Lexer
class
StGUnitLexer
-
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
BufferedTokenStream. tokenSource
protected TokenSource
LegacyCommonTokenStream. tokenSource
protected TokenSource
UnbufferedTokenStream. tokenSource
Methods in org.antlr.runtime that return TokenSource Modifier and Type Method Description TokenSource
BufferedTokenStream. getTokenSource()
TokenSource
LegacyCommonTokenStream. getTokenSource()
TokenSource
TokenStream. getTokenSource()
Where is this stream pulling tokens from? This is not the name, but the object that provides Token objects.TokenSource
UnbufferedTokenStream. getTokenSource()
Methods in org.antlr.runtime with parameters of type TokenSource Modifier and Type Method Description void
BufferedTokenStream. setTokenSource(TokenSource tokenSource)
Reset this token stream by setting its token source.void
CommonTokenStream. setTokenSource(TokenSource tokenSource)
Reset this token stream by setting its token source.void
LegacyCommonTokenStream. setTokenSource(TokenSource tokenSource)
Reset this token stream by setting its token source.Constructors in org.antlr.runtime with parameters of type TokenSource Constructor Description BufferedTokenStream(TokenSource tokenSource)
CommonTokenStream(TokenSource tokenSource)
CommonTokenStream(TokenSource tokenSource, int channel)
LegacyCommonTokenStream(TokenSource tokenSource)
LegacyCommonTokenStream(TokenSource tokenSource, int channel)
TokenRewriteStream(TokenSource tokenSource)
TokenRewriteStream(TokenSource tokenSource, int channel)
UnbufferedTokenStream(TokenSource tokenSource)
-
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.Constructors in org.antlr.tool with parameters of type TokenSource Constructor Description FilteringTokenStream(TokenSource src)
-