diff options
Diffstat (limited to 'dimension/tokenize.h')
-rw-r--r-- | dimension/tokenize.h | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/dimension/tokenize.h b/dimension/tokenize.h index 35255c3..77fe784 100644 --- a/dimension/tokenize.h +++ b/dimension/tokenize.h @@ -46,8 +46,32 @@ typedef enum { DMNSN_BOX, /* Directives (#declare, etc.) */ - DMNSN_INCLUDE, /* Only used internally */ + DMNSN_BREAK, + DMNSN_CASE, + DMNSN_DEBUG, DMNSN_DECLARE, + DMNSN_DEFAULT, + DMNSN_ELSE, + DMNSN_END, + DMNSN_ERROR, + DMNSN_FCLOSE, + DMNSN_FOPEN, + DMNSN_IF, + DMNSN_IFDEF, + DMNSN_IFNDEF, + DMNSN_INCLUDE, /* Only used internally */ + DMNSN_LOCAL, + DMNSN_MACRO, + DMNSN_RANGE, + DMNSN_READ, + DMNSN_RENDER, + DMNSN_STATISTICS, + DMNSN_SWITCH, + DMNSN_UNDEF, + DMNSN_VERSION, + DMNSN_WARNING, + DMNSN_WHILE, + DMNSN_WRITE, /* Identifiers */ DMNSN_IDENTIFIER, |