Allow empty table {}
to work as an empty set literal in some cases
This commit is contained in:
parent
8ab991fba5
commit
2acc9c1f96
@ -1851,6 +1851,10 @@ CORD compile_to_type(env_t *env, ast_t *ast, type_t *t)
|
|||||||
auto set = Match(ast, Set);
|
auto set = Match(ast, Set);
|
||||||
if (!set->item_type && !set->items)
|
if (!set->item_type && !set->items)
|
||||||
return compile(env, ast);
|
return compile(env, ast);
|
||||||
|
} else if (t->tag == SetType && ast->tag == Table) {
|
||||||
|
auto table = Match(ast, Table);
|
||||||
|
if (!table->key_type && !table->value_type && !table->default_value && !table->fallback && !table->entries)
|
||||||
|
return compile(env, ast);
|
||||||
}
|
}
|
||||||
|
|
||||||
type_t *actual = get_type(env, ast);
|
type_t *actual = get_type(env, ast);
|
||||||
|
Loading…
Reference in New Issue
Block a user