]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
for arrays, ast_value will contain several ir_values, ir_v will point to the [0]...
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index 76f2c26d5596e703219b1543e348b9a0d776d035..1d9efb33d4b9d4313caf34bc9c5900d9e988e083 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -162,6 +162,8 @@ struct ast_value_s
     size_t uses;
 
     ir_value *ir_v;
+    ir_value **ir_values;
+    size_t   ir_value_count;
 };
 
 ast_value* ast_value_new(lex_ctx ctx, const char *name, int qctype);