aboutsummaryrefslogtreecommitdiff
path: root/include/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ast.h')
-rw-r--r--include/ast.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ast.h b/include/ast.h
index 05bb6ee..29a0b64 100644
--- a/include/ast.h
+++ b/include/ast.h
@@ -85,6 +85,8 @@ struct Binop {
Ast lhs;
Ast rhs;
BinopType type;
+ /* Is the binop already ordered - no need to reorder it */
+ bool grouped;
};
Ast ast_none();