aboutsummaryrefslogtreecommitdiff
path: root/src/compile/lists.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-24 17:07:41 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-24 17:07:41 -0400
commit476bacc27671de92e8fdbc5b2a904bbf8bc80377 (patch)
tree035183cccc5aa42cb5885dbbccdb6f9cf4f2aa23 /src/compile/lists.c
parente4d080f598b8528d5200deccde279ff02ac5750e (diff)
More splitting out into separate files.
Diffstat (limited to 'src/compile/lists.c')
-rw-r--r--src/compile/lists.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compile/lists.c b/src/compile/lists.c
index e5b024ee..9e9fa2fa 100644
--- a/src/compile/lists.c
+++ b/src/compile/lists.c
@@ -16,6 +16,8 @@
#include "optionals.h"
#include "pointers.h"
#include "promotion.h"
+#include "statements.h"
+#include "types.h"
static ast_t *add_to_list_comprehension(ast_t *item, ast_t *subject) {
return WrapAST(item, MethodCall, .name = "insert", .self = subject, .args = new (arg_ast_t, .value = item));