Public Types | |
enum | Type { END_OF_INPUT = 0, OPEN_BRACKET, CLOSE_BRACKET, EQUAL, SEMI_COLON, VAL, NONE } |
Type of token. More... | |
Public Member Functions | |
Token (Type type, const std::string &val="") | |
Create a token with a given type and an optional initial value. | |
Public Attributes | |
enum Ishtar::Parser::Token::Type | type |
Type of token type of this token. | |
std::string | val |
Value of the token if any. |
|
Type of token.
|