Create() public static method

public static Create ( TokenType type ) : Token
type TokenType
return Token
Ejemplo n.º 1
0
        private Token ConsumeSingleCharToken(char currentCharacter)
        {
            Token token = TokenFactory.Create(currentCharacter);

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

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

            return(initToken(token, contentFunc));
        }