add detail field to proposed api, #34968

This commit is contained in:
Johannes Rieken
2018-05-04 17:37:58 +02:00
parent 072dd6384c
commit 66b2786b2e
3 changed files with 6 additions and 4 deletions

View File

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