2614
2615
public beginDeferredEmit(): void {
2617
>
}
2618
2619
public endDeferredEmit(): void {
2621
>
if (this._deferredCnt === 0) {
2622
>
if (this._shouldFireDeferred) {
2623
this.doFire();
2624
}
2626
>
this._affectedInjectedTextLines?.clear();
2627
>
this._affectedInjectedTextLines = null;
2628
>
this._affectedLineHeights?.clear();
2629
>
this._affectedLineHeights = null;
2630
>
this._affectedFontLines?.clear();
2631
>
this._affectedFontLines = null;
2632
>
}
2633
>
}
2634
2635
public recordLineAffectedByInjectedText(lineNumber: number): void {