diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-24 19:45:19 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-24 19:45:19 -0400 |
| commit | cfe1bd5cb72a12f3bfc643f64b33444ad63502f9 (patch) | |
| tree | 01297e6d0a360b6b2aa6cc64243bfffc150647f0 /src/compile/lists.c | |
| parent | 7a69fe78adcc6abc596e6b1386cded7c57da67e1 (diff) | |
Shared includes for compile folder to reduce duplicate code
Diffstat (limited to 'src/compile/lists.c')
| -rw-r--r-- | src/compile/lists.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/compile/lists.c b/src/compile/lists.c index a44d9098..5df39863 100644 --- a/src/compile/lists.c +++ b/src/compile/lists.c @@ -6,18 +6,12 @@ #include <uninorm.h> #include "../ast.h" -#include "expressions.h" #include "../config.h" #include "../environment.h" #include "../stdlib/text.h" #include "../stdlib/util.h" #include "../typecheck.h" -#include "functions.h" -#include "optionals.h" -#include "pointers.h" -#include "promotions.h" -#include "statements.h" -#include "types.h" +#include "compilation.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)); |
