Antlr4.Runtime.CommonTokenFactory.Create C# (CSharp) Method

Create() public method

public Create ( int type, string text ) : CommonToken
type int
text string
return CommonToken
        public virtual CommonToken Create(int type, string text)
        {
            return new CommonToken(type, text);
        }

Same methods

CommonTokenFactory::Create ( ICharStream>.Tuple source, int type, string text, int channel, int start, int stop, int line, int charPositionInLine ) : CommonToken