From 8a30e769c76be24309847b916a5a7c08cb74501e Mon Sep 17 00:00:00 2001 From: hienlq16103 Date: Sun, 14 Jun 2026 15:25:35 +0700 Subject: [PATCH] Add doc generation for interface --- helper/src/csharp/docs/xmldoc.yaml | 1 + helper/src/csharp/parser.rs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/helper/src/csharp/docs/xmldoc.yaml b/helper/src/csharp/docs/xmldoc.yaml index 51789d6f..b75045a8 100644 --- a/helper/src/csharp/docs/xmldoc.yaml +++ b/helper/src/csharp/docs/xmldoc.yaml @@ -27,6 +27,7 @@ templates: - property_declaration - field_declaration - enum_declaration + - interface_declaration template: | /// /// [TODO:description] diff --git a/helper/src/csharp/parser.rs b/helper/src/csharp/parser.rs index 21080a40..49884d78 100644 --- a/helper/src/csharp/parser.rs +++ b/helper/src/csharp/parser.rs @@ -44,7 +44,8 @@ impl<'a> CSharpParser<'a> { "variable_declaration" | "property_declaration" | "field_declaration" | - "enum_declaration" => self.empty_parse_result(), + "enum_declaration" | + "interface_declaration" => self.empty_parse_result(), _ => None, };