X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fidentifier.h;h=d694a5201d815997d4ca53126875320bdfad686e;hb=eeedca3fcd959f73ba2c2fd4cbab5bd03ceb4f8d;hp=85299979c034c5c2be05633d79704a7bf497f188;hpb=d26105c398be227dc38668ce3e742c31adef15f7;p=pspp diff --git a/src/data/identifier.h b/src/data/identifier.h index 85299979c0..d694a5201d 100644 --- a/src/data/identifier.h +++ b/src/data/identifier.h @@ -21,14 +21,15 @@ #include #include #include "libpspp/str.h" +#include "gl/verify.h" #define TOKEN_TYPES \ + TOKEN_TYPE(STOP) /* End of input. */ \ + \ TOKEN_TYPE(ID) /* Identifier. */ \ - TOKEN_TYPE(MACRO_ID) /* Identifier starting with '!'. */ \ TOKEN_TYPE(POS_NUM) /* Positive number. */ \ TOKEN_TYPE(NEG_NUM) /* Negative number. */ \ TOKEN_TYPE(STRING) /* Quoted string. */ \ - TOKEN_TYPE(STOP) /* End of input. */ \ \ TOKEN_TYPE(ENDCMD) /* . */ \ TOKEN_TYPE(PLUS) /* + */ \ @@ -37,7 +38,7 @@ TOKEN_TYPE(SLASH) /* / */ \ TOKEN_TYPE(EQUALS) /* = */ \ TOKEN_TYPE(LPAREN) /* (*/ \ - TOKEN_TYPE(RPAREN) /*) */ \ + TOKEN_TYPE(RPAREN) /* ) */ \ TOKEN_TYPE(LBRACK) /* [ */ \ TOKEN_TYPE(RBRACK) /* ] */ \ TOKEN_TYPE(COMMA) /* , */ \ @@ -58,16 +59,22 @@ TOKEN_TYPE(TO) /* TO */ \ TOKEN_TYPE(WITH) /* WITH */ \ \ - TOKEN_TYPE(EXP) /* ** */ - + TOKEN_TYPE(EXP) /* ** */ \ + \ + TOKEN_TYPE(MACRO_ID) /* Identifier starting with '!'. */ \ + TOKEN_TYPE(MACRO_PUNCT) /* Miscellaneous punctuator. */ /* Token types. */ enum token_type { #define TOKEN_TYPE(TYPE) T_##TYPE, TOKEN_TYPES - TOKEN_N_TYPES #undef TOKEN_TYPE }; +verify(T_STOP == 0); + +#define TOKEN_TYPE(TYPE) + 1 +enum { TOKEN_N_TYPES = TOKEN_TYPES }; +#undef TOKEN_TYPE const char *token_type_to_name (enum token_type); const char *token_type_to_string (enum token_type);