diff options
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index 09931d1..ef5bb17 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -90,6 +90,17 @@ 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_NOT, + DMNSN_AST_TERNARY, + DMNSN_AST_ABS, DMNSN_AST_ACOS, DMNSN_AST_ACOSH, @@ -133,16 +144,6 @@ typedef enum { DMNSN_AST_Z, DMNSN_AST_T, - 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_NOT, - DMNSN_AST_IDENTIFIER, DMNSN_AST_STRING, |