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

Execute() public method

This action is implemented by calling Lexer.Type with the value provided by Type() .

public Execute ( Lexer lexer ) : void
lexer Lexer
return void
        public virtual void Execute(Lexer lexer)
        {
            lexer.Type = type;
        }