Acquarella.Lexers.Token.Token C# (CSharp) Method

Token() public method

public Token ( TokenType type, string text, int start, int length ) : System
type TokenType
text string
start int
length int
return System
        public Token(TokenType type, string text, int start, int length)
        {
            this.type = type;
            this.text = text;
            this.start = start;
            this.length = length;
        }
Token