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/assignments.c | |
| parent | 7a69fe78adcc6abc596e6b1386cded7c57da67e1 (diff) | |
Shared includes for compile folder to reduce duplicate code
Diffstat (limited to 'src/compile/assignments.c')
| -rw-r--r-- | src/compile/assignments.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/compile/assignments.c b/src/compile/assignments.c index ba24ecf0..ab28b972 100644 --- a/src/compile/assignments.c +++ b/src/compile/assignments.c @@ -1,17 +1,12 @@ // This file defines how to compile assignments -#include "assignments.h" + #include "../ast.h" #include "../environment.h" #include "../stdlib/datatypes.h" #include "../stdlib/text.h" #include "../stdlib/util.h" #include "../typecheck.h" -#include "declarations.h" -#include "expressions.h" -#include "integers.h" -#include "pointers.h" -#include "promotions.h" -#include "types.h" +#include "compilation.h" public Text_t compile_update_assignment(env_t *env, ast_t *ast) { |
