diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-04-21 11:22:11 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-04-21 11:22:11 -0400 |
| commit | 3f10460a6e04f014d3fe7a911f6afa844f975585 (patch) | |
| tree | 2f2cfe9e82e0b29925acef2b0cf677e5d70ba6ae /ast.c | |
| parent | aa66a38b08fcf26962e50c92b62cfa43b3c053f0 (diff) | |
Support loading imports as top-level statements
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -215,6 +215,7 @@ bool is_constant(ast_t *ast) return is_constant(binop->lhs) && is_constant(binop->rhs); } } + case Use: return true; default: return false; } } |
