Uses of Class
com.github.fridujo.glacio.parsing.lexer.TokenType
-
Packages that use TokenType Package Description com.github.fridujo.glacio.parsing.lexer com.github.fridujo.glacio.parsing.parser -
-
Uses of TokenType in com.github.fridujo.glacio.parsing.lexer
Methods in com.github.fridujo.glacio.parsing.lexer that return TokenType Modifier and Type Method Description TokenTypeFixedTokenDefinition. getType()TokenTypeToken. getType()static TokenTypeTokenType. valueOf(String name)Returns the enum constant of this type with the specified name.static TokenType[]TokenType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.fridujo.glacio.parsing.lexer with parameters of type TokenType Modifier and Type Method Description TokenSequenceLexer. consumeUntil(TokenType... tokenTypes)booleanToken. isOfAnyType(TokenType... tokenTypes)booleanToken. isOfType(TokenType tokenType)voidLexer. skipTokensOfType(TokenType... tokenTypes)Constructors in com.github.fridujo.glacio.parsing.lexer with parameters of type TokenType Constructor Description Token(TokenType type, Position position)Token(TokenType type, String literal, Position position) -
Uses of TokenType in com.github.fridujo.glacio.parsing.parser
Methods in com.github.fridujo.glacio.parsing.parser that return TokenType Modifier and Type Method Description TokenTypeDynamicTokenDefinition. getType()Methods in com.github.fridujo.glacio.parsing.parser with parameters of type TokenType Modifier and Type Method Description static DynamicTokenDefinitionDynamicTokenDefinition. dynamicToken(TokenType type, Set<String> literals)
-