From 4d59fc2987e52da0274e6b204a9d2885613f74b7 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 1 Apr 2025 14:05:10 -0400 Subject: Move patterns into a module --- src/ast.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ast.c') diff --git a/src/ast.c b/src/ast.c index 5f4e24f1..75795d61 100644 --- a/src/ast.c +++ b/src/ast.c @@ -165,6 +165,7 @@ CORD ast_to_xml(ast_t *ast) T(Use, "%r%r", optional_tagged("var", data.var), xml_escape(data.path)) T(InlineCCode, "%r", xml_escape(data.code)) T(Deserialize, "%r%r", type_ast_to_xml(data.type), ast_to_xml(data.value)) + T(Extend, "%r", data.name, ast_to_xml(data.body)) default: return "???"; #undef T } -- cgit v1.2.3