From cedae3039c8d67568b5ac35833c10cbfc1c7cb23 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 3 Apr 2025 15:01:23 -0400 Subject: Fix textual representation of table types --- src/ast.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index cad7bb64..766b484b 100644 --- a/src/ast.h +++ b/src/ast.h @@ -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); -- cgit v1.2.3