Bike.Parser.Lexer.Token C# (CSharp) Method

Token() private method

private Token ( TokenType type, string txt ) : Token
type TokenType
txt string
return Token
        private Token Token(TokenType type, string txt)
        {
            return new Token(type, txt, currentLocation);
        }