diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-03 15:01:23 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-03 15:01:23 -0400 |
| commit | cedae3039c8d67568b5ac35833c10cbfc1c7cb23 (patch) | |
| tree | 1b1ff363a3c2be77d26acfb1a55dd267ec073f3e /src/ast.h | |
| parent | 59993b85301071540a90a0e97df27e83000f77f7 (diff) | |
Fix textual representation of table types
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -340,7 +340,8 @@ struct ast_s { }; CORD ast_to_xml(ast_t *ast); -const char *ast_to_str(ast_t *ast); +const char *ast_to_xml_str(ast_t *ast); +const char *ast_source(ast_t *ast); CORD type_ast_to_xml(type_ast_t *ast); PUREFUNC bool is_idempotent(ast_t *ast); void visit_topologically(ast_list_t *ast, Closure_t fn); |
