chore(vscode): update to 1.55.2

This commit is contained in:
Akash Satheesan
2021-04-09 11:32:27 +05:30
1102 changed files with 39988 additions and 23544 deletions

View File

@@ -83,17 +83,21 @@ export abstract class Composite extends Component implements IComposite {
protected actionRunner: IActionRunner | undefined;
private _telemetryService: ITelemetryService;
protected get telemetryService(): ITelemetryService { return this._telemetryService; }
private visible: boolean;
private parent: HTMLElement | undefined;
constructor(
id: string,
private _telemetryService: ITelemetryService,
telemetryService: ITelemetryService,
themeService: IThemeService,
storageService: IStorageService
) {
super(id, themeService, storageService);
this._telemetryService = telemetryService;
this.visible = false;
}
@@ -101,10 +105,6 @@ export abstract class Composite extends Component implements IComposite {
return undefined;
}
protected get telemetryService(): ITelemetryService {
return this._telemetryService;
}
/**
* Note: Clients should not call this method, the workbench calls this
* method. Calling it otherwise may result in unexpected behavior.
@@ -203,7 +203,7 @@ export abstract class Composite extends Component implements IComposite {
*/
getActionRunner(): IActionRunner {
if (!this.actionRunner) {
this.actionRunner = new ActionRunner();
this.actionRunner = this._register(new ActionRunner());
}
return this.actionRunner;