Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aux window - fix hygiene #199016

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/vs/workbench/browser/part.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ export abstract class MultiWindowParts<T extends IMultiWindowPart> extends Dispo
protected readonly _parts = new Set<T>();
get parts() { return Array.from(this._parts); }

protected abstract mainPart: T;
abstract readonly mainPart: T;

protected registerPart(part: T): IDisposable {
registerPart(part: T): IDisposable {
this._parts.add(part);

return this._register(toDisposable(() => this.unregisterPart(part)));
Expand Down