Skip to content

Commit 42d68cb

Browse files
committed
Pass the value to stop after rather than calling each time
1 parent c31d069 commit 42d68cb

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

src/compiler/checker.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -21303,13 +21303,12 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
2130321303
if (result === Ternary.True || result === Ternary.Maybe) {
2130421304
// If result is definitely true, record all maybe keys as having succeeded. Also, record Ternary.Maybe
2130521305
// results as having succeeded once we reach depth 0, but never record Ternary.Unknown results.
21306-
maybeKeys.popAll(v => {
21306+
maybeKeys.popUntilInclusive(id, v => {
2130721307
relation.set(v, RelationComparisonResult.Succeeded | propagatingVarianceFlags);
21308-
return v === id;
2130921308
});
2131021309
}
2131121310
else {
21312-
maybeKeys.popAll(v => v === id);
21311+
maybeKeys.popUntilInclusive(id);
2131321312
}
2131421313
}
2131521314
// Note: it's intentional that we don't pop in the else case;
@@ -21320,7 +21319,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
2132021319
// A false result goes straight into global cache (when something is false under
2132121320
// assumptions it will also be false without assumptions)
2132221321
relation.set(id, (reportErrors ? RelationComparisonResult.Reported : 0) | RelationComparisonResult.Failed | propagatingVarianceFlags);
21323-
maybeKeys.popAll(v => v === id);
21322+
maybeKeys.popUntilInclusive(id);
2132421323
}
2132521324
return result;
2132621325
}

src/compiler/core.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -2885,7 +2885,7 @@ export function isNodeLikeSystem(): boolean {
28852885

28862886

28872887
/** @internal */
2888-
export interface StackSet<T extends {}> {
2888+
export interface StackSet<T> {
28892889
/**
28902890
* Returns true if the value has already been pushed.
28912891
*/
@@ -2895,17 +2895,16 @@ export interface StackSet<T extends {}> {
28952895
*/
28962896
push(value: T): void;
28972897
/**
2898-
* This pops from the stack until the callback returns true.
2898+
* This pops from the stack, stopping iteration after v is found.
28992899
*
2900-
* Note that a value is popped, _then_ the callback is evaluated, meaning
2901-
* that if you return true to stop iteration, the value that the callback
2902-
* returned true for will still have been popped.
2900+
* Note that the callback is evaluated _after_ the item is popped, meaning
2901+
* the callback will execute for v and it will not remain on the stack.
29032902
*/
2904-
popAll(callback: (v: T) => boolean): void;
2903+
popUntilInclusive(v: T, callback?: (v: T) => void): void;
29052904
}
29062905

29072906
/** @internal */
2908-
export function createStackSet<T extends {}>(): StackSet<T> {
2907+
export function createStackSet<T>(): StackSet<T> {
29092908
// Why var? It avoids TDZ checks in the runtime which can be costly.
29102909
// See: https://github.com/microsoft/TypeScript/issues/52924
29112910
/* eslint-disable no-var */
@@ -2924,13 +2923,14 @@ export function createStackSet<T extends {}>(): StackSet<T> {
29242923
stack[end] = value;
29252924
end++;
29262925
},
2927-
popAll(callback) {
2926+
popUntilInclusive(v, callback) {
29282927
while (end > 0) {
29292928
end--;
29302929
const value = stack[end];
29312930
set.delete(value);
2932-
if (callback(value)) {
2933-
break;
2931+
callback?.(value);
2932+
if (value === v) {
2933+
return;
29342934
}
29352935
}
29362936
},

0 commit comments

Comments
 (0)