From a6c5926941d6ec484e8dd0e61fcb096c4347beb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Tue, 5 Feb 2013 09:48:17 +0100 Subject: [PATCH] Expose the comment tags known by the completion engine. --- .../Completion/CSharpCompletionEngine.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs b/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs index a580094f01..46d2f23740 100644 --- a/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs +++ b/ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs @@ -2987,6 +2987,12 @@ namespace ICSharpCode.NRefactory.CSharp.Completion "value" } ); + + public static IEnumerable CommentTags { + get { + return commentTags; + } + } string GetLastClosingXmlCommentTag() {