diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-12 17:33:40 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-12 17:33:40 -0400 |
| commit | 81812b46a0cca168adcde662b6e140adc7e23b1a (patch) | |
| tree | ac02bed0e68e47f1d9f1867f01d39e490199545a /parse.c | |
| parent | bdf7c369edca612335e5b5edd24cab6be64c841d (diff) | |
Put back fallback
Diffstat (limited to 'parse.c')
| -rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |
