fix kind icons

This commit is contained in:
Johannes Rieken
2018-05-08 15:50:20 +02:00
parent e6ebbe6be5
commit 5b14d979b3
2 changed files with 3 additions and 19 deletions

View File

@@ -669,9 +669,9 @@ export function createApiFactory(
StatusBarAlignment: extHostTypes.StatusBarAlignment,
SymbolInformation: extHostTypes.SymbolInformation,
HierarchicalSymbolInformation: class extends extHostTypes.HierarchicalSymbolInformation {
constructor(name, kind, detail, keyof, range) {
constructor(name, detail, kind, keyof, range) {
checkProposedApiEnabled(extension);
super(name, kind, detail, keyof, range);
super(name, detail, kind, keyof, range);
}
},
SymbolKind: extHostTypes.SymbolKind,