Browse Source

Expose the comment tags known by the completion engine.

pull/32/merge
Mike Krüger 13 years ago
parent
commit
a6c5926941
  1. 6
      ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs

6
ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs

@ -2987,6 +2987,12 @@ namespace ICSharpCode.NRefactory.CSharp.Completion @@ -2987,6 +2987,12 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
"value"
}
);
public static IEnumerable<string> CommentTags {
get {
return commentTags;
}
}
string GetLastClosingXmlCommentTag()
{

Loading…
Cancel
Save