diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-02-02 12:03:26 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-02-02 12:03:26 -0500 |
commit | 3da1fe6d2fb07f3f361482d8056e36636dcec3f5 (patch) | |
tree | 54ee1eaf680f7a97820f4a150f7d9679f3345d8b /dimension/parse.h | |
parent | c1f6c955de83cf35fb34cc1fcf9a276bf6dbd7c8 (diff) | |
download | dimension-3da1fe6d2fb07f3f361482d8056e36636dcec3f5.tar.xz |
Implement #if.
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index bbc52e7..28997af 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -83,11 +83,20 @@ typedef enum { DMNSN_AST_DOT_T, DMNSN_AST_DOT_TRANSMIT, + DMNSN_AST_EQUAL, + DMNSN_AST_NOT_EQUAL, + DMNSN_AST_LESS, + DMNSN_AST_LESS_EQUAL, + DMNSN_AST_GREATER, + DMNSN_AST_GREATER_EQUAL, + DMNSN_AST_AND, + DMNSN_AST_OR, + DMNSN_AST_COLOR, DMNSN_AST_IDENTIFIER, - DMNSN_AST_STRING, + DMNSN_AST_STRING } dmnsn_astnode_type; /* Abstract syntax tree node (a dmnsn_array* of these is an AST) */ |