C# Class Antlr4.Runtime.Atn.AtomTransition

TODO: make all transitions sets? no, should remove set edges
Inheritance: Transition
Show file Open project: antlr/antlr4 Class Usage Examples

Public Properties

Property Type Description
token int

Public Methods

Method Description
AtomTransition ( ATNState target, int token ) : Antlr4.Runtime.Atn
Matches ( int symbol, int minVocabSymbol, int maxVocabSymbol ) : bool

Private Methods

Method Description
ToString ( ) : string

Method Details

AtomTransition() public method

public AtomTransition ( ATNState target, int token ) : Antlr4.Runtime.Atn
target ATNState
token int
return Antlr4.Runtime.Atn

Matches() public method

public Matches ( int symbol, int minVocabSymbol, int maxVocabSymbol ) : bool
symbol int
minVocabSymbol int
maxVocabSymbol int
return bool

Property Details

token public property

The token type or character value; or, signifies special label.
The token type or character value; or, signifies special label.
public int token
return int