Put back fallback

This commit is contained in:
Bruce Hill 2024-08-12 17:33:40 -04:00
parent bdf7c369ed
commit 81812b46a0

View File

@ -794,7 +794,7 @@ PARSER(parse_table) {
whitespace(&pos);
expect_closing(ctx, &pos, "}", "I wasn't able to parse the rest of this table");
return NewAST(ctx->file, start, pos, Table, .key_type=key_type, .value_type=value_type, .entries=entries);
return NewAST(ctx->file, start, pos, Table, .key_type=key_type, .value_type=value_type, .entries=entries, .fallback=fallback);
}
PARSER(parse_set) {