From 02fe49a7646807964d214605a478c90d82d2c8a3 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 12 May 2024 20:13:19 -0400 Subject: Deprecate interfaces (RIP) --- ast.c | 1 - 1 file changed, 1 deletion(-) (limited to 'ast.c') diff --git a/ast.c b/ast.c index 9199a567..b9a2a3e8 100644 --- a/ast.c +++ b/ast.c @@ -136,7 +136,6 @@ CORD ast_to_xml(ast_t *ast) T(StructDef, "%r%r", data.name, arg_list_to_xml(data.fields), ast_to_xml(data.namespace)) T(EnumDef, "%r%r", data.name, tags_to_xml(data.tags), ast_to_xml(data.namespace)) T(LangDef, "%r", data.name, ast_to_xml(data.namespace)) - T(InterfaceDef, "%r", data.name, arg_list_to_xml(data.fields)) T(Index, "%r%r", optional_tagged("indexed", data.indexed), optional_tagged("index", data.index)) T(FieldAccess, "%r", data.field, ast_to_xml(data.fielded)) T(Optional, "%r", ast_to_xml(data.value)) -- cgit v1.2.3