IronKonoha.Token.Token C# (CSharp) Method

Token() public method

public Token ( TokenType type, string text, int lpos ) : System
type TokenType
text string
lpos int
return System
        public Token(TokenType type, string text, int lpos)
        {
            this.Type = type;
            this.Text = text;
        }