diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-24 15:07:36 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-24 15:07:36 -0400 |
| commit | e30c0f06d55cd7b27c5d012a96989920f586e4a1 (patch) | |
| tree | 785c0f59ee83173867db508dbcb271adc97d1582 /src/compile/list.h | |
| parent | be534f5e511a1d3836254b827cdaa2b8c309f5c4 (diff) | |
Split list compilation logic into its own file.
Diffstat (limited to 'src/compile/list.h')
| -rw-r--r-- | src/compile/list.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compile/list.h b/src/compile/list.h new file mode 100644 index 00000000..b9bf74d6 --- /dev/null +++ b/src/compile/list.h @@ -0,0 +1,5 @@ +#include "../ast.h" +#include "../environment.h" +#include "../stdlib/datatypes.h" + +Text_t compile_typed_list(env_t *env, ast_t *ast, type_t *list_type); |
