Antlr4.Runtime.Atn.LexerCustomAction.LexerCustomAction C# (CSharp) Метод

LexerCustomAction() публичный Метод

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 /// /// . ///
Результат Antlr4.Runtime
        public LexerCustomAction(int ruleIndex, int actionIndex)
        {
            this.ruleIndex = ruleIndex;
            this.actionIndex = actionIndex;
        }