Create() public static method

public static Create ( TokenType type ) : Token
type TokenType
return Token
示例#1
0
        private Token ConsumeSingleCharToken(char currentCharacter)
        {
            Token token = TokenFactory.Create(currentCharacter);

            token.Index   = _currentIndex;
            token.Content = Consume().ToString();
            return(token);
        }
示例#2
0
        private Token ConsumeMultiCharToken(char currentCharacter, Func <string> contentFunc)
        {
            Token token = TokenFactory.Create(currentCharacter);

            return(initToken(token, contentFunc));
        }
示例#3
0
        private Token ConsumeToken(TokenType type, Func <string> contentFunc)
        {
            Token token = TokenFactory.Create(type);

            return(initToken(token, contentFunc));
        }