Merge pull request #10225 from sandyarmstrong/cik-method

Support CompletionItemKind.Method
This commit is contained in:
Johannes Rieken
2016-08-11 16:37:24 +02:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -278,6 +278,7 @@ export const CompletionItemKind = {
from(kind: types.CompletionItemKind): modes.SuggestionType {
switch (kind) {
case types.CompletionItemKind.Method: return 'method';
case types.CompletionItemKind.Function: return 'function';
case types.CompletionItemKind.Constructor: return 'constructor';
case types.CompletionItemKind.Field: return 'field';