Skip to content

Commit

Permalink
Fixes mangling issue in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet committed Jul 2, 2024
1 parent 42b3bac commit 01b9e01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/platform/observable/common/wrapInReloadableClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ type Result<TArgs extends any[]> = new (...args: TArgs) => IDisposable;

class BaseClass {
constructor(
protected readonly instantiationService: IInstantiationService,
public readonly instantiationService: IInstantiationService,
) { }

init(...params: any[]): void { }
public init(...params: any[]): void { }
}

function createWrapper<T extends any[]>(getClass: () => any, B: new (...args: T) => BaseClass) {
Expand Down

0 comments on commit 01b9e01

Please sign in to comment.