diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-12-06 15:18:25 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-12-06 15:18:25 -0500 |
| commit | 3a5815d4bd000cb250e3736db7ad02f63d065bfe (patch) | |
| tree | 253f7c8afbba9bfbd08b9eb4616ed7219300f537 /ast.c | |
| parent | ca14454bb03bda9794ffcb0c0745cf6978b595fc (diff) | |
Improvements and fixes for assigning to table keys
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -123,6 +123,7 @@ CORD ast_to_xml(ast_t *ast) ast_list_to_xml(data.items)) T(Table, "<Table>%r%r%r%r</Table>", optional_tagged_type("key-type", data.key_type), optional_tagged_type("value-type", data.value_type), + optional_tagged("default-value", data.default_value), ast_list_to_xml(data.entries), optional_tagged("fallback", data.fallback)) T(TableEntry, "<TableEntry>%r%r</TableEntry>", ast_to_xml(data.key), ast_to_xml(data.value)) T(Channel, "<Channel>%r%r</Channel>", type_ast_to_xml(data.item_type), optional_tagged("max-size", data.max_size)) |
