mirror of
https://github.com/coder/code-server.git
synced 2026-05-09 05:47:26 +02:00
chore(vscode): update to 1.55.2
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user