@@ -2885,7 +2885,7 @@ export function isNodeLikeSystem(): boolean {
2885
2885
2886
2886
2887
2887
/** @internal */
2888
- export interface StackSet < T extends { } > {
2888
+ export interface StackSet < T > {
2889
2889
/**
2890
2890
* Returns true if the value has already been pushed.
2891
2891
*/
@@ -2895,17 +2895,16 @@ export interface StackSet<T extends {}> {
2895
2895
*/
2896
2896
push ( value : T ) : void ;
2897
2897
/**
2898
- * This pops from the stack until the callback returns true .
2898
+ * This pops from the stack, stopping iteration after v is found .
2899
2899
*
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.
2903
2902
*/
2904
- popAll ( callback : ( v : T ) => boolean ) : void ;
2903
+ popUntilInclusive ( v : T , callback ? : ( v : T ) => void ) : void ;
2905
2904
}
2906
2905
2907
2906
/** @internal */
2908
- export function createStackSet < T extends { } > ( ) : StackSet < T > {
2907
+ export function createStackSet < T > ( ) : StackSet < T > {
2909
2908
// Why var? It avoids TDZ checks in the runtime which can be costly.
2910
2909
// See: https://github.com/microsoft/TypeScript/issues/52924
2911
2910
/* eslint-disable no-var */
@@ -2924,13 +2923,14 @@ export function createStackSet<T extends {}>(): StackSet<T> {
2924
2923
stack [ end ] = value ;
2925
2924
end ++ ;
2926
2925
} ,
2927
- popAll ( callback ) {
2926
+ popUntilInclusive ( v , callback ) {
2928
2927
while ( end > 0 ) {
2929
2928
end -- ;
2930
2929
const value = stack [ end ] ;
2931
2930
set . delete ( value ) ;
2932
- if ( callback ( value ) ) {
2933
- break ;
2931
+ callback ?.( value ) ;
2932
+ if ( value === v ) {
2933
+ return ;
2934
2934
}
2935
2935
}
2936
2936
} ,
0 commit comments