diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 15:43:59 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 15:43:59 -0400 |
| commit | 71f73d8b3ce63f9a3685bc1a1686ef4fab3294a6 (patch) | |
| tree | 99fe1309fa4d24609867dcc62859caed909a76d9 /src/compile/conditionals.c | |
| parent | f5612e38183dc20d18f207f8ab055574a4d93ad0 (diff) | |
Deprecate sets
Diffstat (limited to 'src/compile/conditionals.c')
| -rw-r--r-- | src/compile/conditionals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compile/conditionals.c b/src/compile/conditionals.c index 7fcd6cc8..caebdbde 100644 --- a/src/compile/conditionals.c +++ b/src/compile/conditionals.c @@ -18,7 +18,7 @@ Text_t compile_condition(env_t *env, ast_t *ast) { return Texts("(", compile(env, ast), ").length"); } else if (t->tag == ListType) { return Texts("(", compile(env, ast), ").length"); - } else if (t->tag == TableType || t->tag == SetType) { + } else if (t->tag == TableType) { return Texts("(", compile(env, ast), ").entries.length"); } else if (t->tag == OptionalType) { return Texts("!", check_none(t, compile(env, ast))); |
