Antlr4.Runtime.Atn.LexerIndexedCustomAction.Execute C# (CSharp) Method

Execute() public method

This method calls Execute(Antlr4.Runtime.Lexer) on the result of Action() using the provided lexer .

public Execute ( Lexer lexer ) : void
lexer Lexer
return void
        public void Execute(Lexer lexer)
        {
            // assume the input stream position was properly set by the calling code
            action.Execute(lexer);
        }