Make distinction between prefix and postfix unary operators in trees.

This commit is contained in:
2018-03-17 18:25:23 -07:00
parent 4e86ccc253
commit 7ab5eba529
4 changed files with 11 additions and 7 deletions

View File

@@ -15,7 +15,8 @@ enum libab_tree_variant_e {
TREE_NUM,
TREE_OP,
TREE_RESERVED_OP,
TREE_UNARY_OP,
TREE_PREFIX_OP,
TREE_POSTFIX_OP,
TREE_BLOCK,
TREE_VOID,
TREE_IF,