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

LexerTypeAction() public method

Constructs a new type action with the specified token type value.
public LexerTypeAction ( int type ) : Antlr4.Runtime
type int /// The type to assign to the token using /// /// . ///
return Antlr4.Runtime
        public LexerTypeAction(int type)
        {
            this.type = type;
        }