@@ -614,6 +614,12 @@ for (PATH of ['core-js-pure', 'core-js']) {
614
614
ok ( load ( NS , 'array/virtual/to-reversed' ) . call ( [ 1 , 2 , 3 ] ) [ 0 ] === 3 ) ;
615
615
ok ( load ( NS , 'array/virtual/to-sorted' ) . call ( [ 3 , 2 , 1 ] ) [ 0 ] === 1 ) ;
616
616
ok ( load ( NS , 'array/virtual/to-spliced' ) . call ( [ 3 , 2 , 1 ] , 1 , 1 , 4 , 5 ) . length === 4 ) ;
617
+ ok ( load ( NS , 'symbol/dispose' ) ) ;
618
+ ok ( new ( load ( NS , 'suppressed-error' ) ) ( 1 , 2 ) . suppressed === 2 ) ;
619
+ ok ( typeof load ( NS , 'disposable-stack' ) == 'function' ) ;
620
+ ok ( typeof load ( NS , 'disposable-stack/constructor' ) == 'function' ) ;
621
+ load ( NS , 'iterator/dispose' ) ;
622
+ load ( NS , 'iterator' ) ;
617
623
618
624
const instanceGroup = load ( NS , 'instance/group' ) ;
619
625
ok ( typeof instanceGroup == 'function' ) ;
@@ -701,7 +707,6 @@ for (PATH of ['core-js-pure', 'core-js']) {
701
707
ok ( ! load ( NS , 'function/is-constructor' ) ( it => it ) ) ;
702
708
ok ( load ( NS , 'function/un-this' ) ( [ ] . slice ) ( [ 1 , 2 , 3 ] , 1 ) [ 0 ] === 2 ) ;
703
709
ok ( load ( NS , 'function/virtual/un-this' ) . call ( [ ] . slice ) ( [ 1 , 2 , 3 ] , 1 ) [ 0 ] === 2 ) ;
704
- ok ( typeof load ( NS , 'iterator' ) == 'function' ) ;
705
710
ok ( typeof load ( NS , 'iterator/as-indexed-pairs' ) == 'function' ) ;
706
711
ok ( typeof load ( NS , 'iterator/drop' ) == 'function' ) ;
707
712
ok ( typeof load ( NS , 'iterator/every' ) == 'function' ) ;
@@ -807,14 +812,9 @@ for (PATH of ['core-js-pure', 'core-js']) {
807
812
ok ( load ( NS , 'weak-set/from' ) ( [ { } , [ ] ] ) instanceof WeakSet ) ;
808
813
ok ( load ( NS , 'weak-set/of' ) ( { } , [ ] ) instanceof WeakSet ) ;
809
814
ok ( load ( NS , 'symbol/async-dispose' ) ) ;
810
- ok ( load ( NS , 'symbol/dispose' ) ) ;
811
- ok ( new ( load ( NS , 'suppressed-error' ) ) ( 1 , 2 ) . suppressed === 2 ) ;
812
815
load ( NS , 'async-iterator/async-dispose' ) ;
813
- load ( NS , 'iterator/dispose' ) ;
814
816
ok ( typeof load ( NS , 'async-disposable-stack' ) == 'function' ) ;
815
817
ok ( typeof load ( NS , 'async-disposable-stack/constructor' ) == 'function' ) ;
816
- ok ( typeof load ( NS , 'disposable-stack' ) == 'function' ) ;
817
- ok ( typeof load ( NS , 'disposable-stack/constructor' ) == 'function' ) ;
818
818
819
819
const instanceCodePoints = load ( NS , 'instance/code-points' ) ;
820
820
ok ( typeof instanceCodePoints == 'function' ) ;
0 commit comments