mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 20:13:32 +01:00
Build with latest TS nightly (#120690)
* Pick up new TS 4.3 Also tests adding override keywords for extensions as part of #120675 * Update to daily TS and workaround TS 4.3 issue Works around https://github.com/microsoft/TypeScript/issues/43578
This commit is contained in:
@@ -179,7 +179,7 @@ export class ThrottledDelayer<T> extends Delayer<Promise<T>> {
|
||||
this.throttler = new Throttler<T>();
|
||||
}
|
||||
|
||||
public trigger(promiseFactory: ITask<Promise<T>>, delay?: number): Promise<Promise<T>> {
|
||||
public override trigger(promiseFactory: ITask<Promise<T>>, delay?: number): Promise<Promise<T>> {
|
||||
return super.trigger(() => this.throttler.queue(promiseFactory), delay);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user