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

@ -2988,6 +2988,12 @@ namespace ICSharpCode.NRefactory.CSharp.Completion @@ -2988,6 +2988,12 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
}
);
public static IEnumerable<string> CommentTags {
get {
return commentTags;
}
}
string GetLastClosingXmlCommentTag()
{
var line = document.GetLineByNumber(location.Line);

Loading…
Cancel
Save