Microsoft.Automata.MSO.Mona.Token.Token C# (CSharp) Method

Token() private method

private Token ( string text, LexLocationInFile loc, Tokens kind ) : System
text string
loc LexLocationInFile
kind Tokens
return System
        internal Token(string text, LexLocationInFile loc, Tokens kind)
        {
            this.text = text;
            this.location = loc;
            this.kind = kind;
        }