Antlr4.Runtime.Atn.LexerCustomAction.LexerCustomAction C# (CSharp) Method

LexerCustomAction() public method

Constructs a custom lexer action with the specified rule and action indexes.
public LexerCustomAction ( int ruleIndex, int actionIndex ) : Antlr4.Runtime
ruleIndex int /// The rule index to use for calls to /// /// . ///
actionIndex int /// The action index to use for calls to /// /// . ///
return Antlr4.Runtime
        public LexerCustomAction(int ruleIndex, int actionIndex)
        {
            this.ruleIndex = ruleIndex;
            this.actionIndex = actionIndex;
        }