From 476bacc27671de92e8fdbc5b2a904bbf8bc80377 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 24 Aug 2025 17:07:41 -0400 Subject: More splitting out into separate files. --- src/compile/lists.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/compile/lists.c') 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)); -- cgit v1.2.3