From cfe1bd5cb72a12f3bfc643f64b33444ad63502f9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 24 Aug 2025 19:45:19 -0400 Subject: Shared includes for compile folder to reduce duplicate code --- src/compile/tables.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/compile/tables.c') diff --git a/src/compile/tables.c b/src/compile/tables.c index e9067c0f..b955178e 100644 --- a/src/compile/tables.c +++ b/src/compile/tables.c @@ -1,18 +1,12 @@ // This file defines how to compile tables #include "../ast.h" -#include "expressions.h" #include "../environment.h" #include "../stdlib/datatypes.h" #include "../stdlib/text.h" #include "../typecheck.h" #include "../types.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_table_comprehension(ast_t *entry, ast_t *subject) { DeclareMatch(e, entry, TableEntry); -- cgit v1.2.3