mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
back to more conventinal api proposal, #34968
This commit is contained in:
@@ -708,15 +708,9 @@ export function createApiFactory(
|
||||
StatusBarAlignment: extHostTypes.StatusBarAlignment,
|
||||
SymbolInformation: extHostTypes.SymbolInformation,
|
||||
SymbolInformation2: class extends extHostTypes.SymbolInformation2 {
|
||||
constructor(name, detail, kind, range, location) {
|
||||
constructor(name, kind, containerName, location) {
|
||||
checkProposedApiEnabled(extension);
|
||||
super(name, detail, kind, range, location);
|
||||
}
|
||||
},
|
||||
Hierarchy: class <T> extends extHostTypes.Hierarchy<T> {
|
||||
constructor(parent: T) {
|
||||
checkProposedApiEnabled(extension);
|
||||
super(parent);
|
||||
super(name, kind, containerName, location);
|
||||
}
|
||||
},
|
||||
SymbolKind: extHostTypes.SymbolKind,
|
||||
|
||||
Reference in New Issue
Block a user