]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
ast_binary->right_first and an execution order check
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index bb7a3170a7c108a51d6792cb5588fee64e1a9ac0..9b7e5587f9cd6e11912cd439b9be72e4c290490a 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -251,7 +251,7 @@ struct ast_binary_s
     ast_expression *left;
     ast_expression *right;
     ast_binary_ref  refs;
-
+    bool            right_first;
 };
 ast_binary* ast_binary_new(lex_ctx_t    ctx,
                            int        op,