Browse Source

[CodeCompletion] Added async to the type level keywords.

newNRvisualizers
Mike Krüger 13 years ago
parent
commit
f51623867f
  1. 2
      ICSharpCode.NRefactory.CSharp/Completion/CSharpCompletionEngine.cs

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

@ -3188,7 +3188,7 @@ namespace ICSharpCode.NRefactory.CSharp.Completion @@ -3188,7 +3188,7 @@ namespace ICSharpCode.NRefactory.CSharp.Completion
"public", "internal", "protected", "private", "async"
};
static string[] typeLevelKeywords = new string [] {
"public", "internal", "protected", "private",
"public", "internal", "protected", "private", "async",
"class", "interface", "struct", "enum", "delegate",
"abstract", "sealed", "static", "unsafe", "partial",
"const", "event", "extern", "fixed","new",

Loading…
Cancel
Save