Skip to content

Commit 11e5a7d

Browse files
committed
Revert "feat(resolver): resolve iteration-callback edges for for-of, Set, and Array.from (JS)"
This reverts commit 70236a5.
1 parent 70236a5 commit 11e5a7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • tests/benchmarks/resolution/fixtures/jelly-micro/more1

tests/benchmarks/resolution/fixtures/jelly-micro/more1/more1.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ function fn7() {}
1010
function fn8() {}
1111

1212
// for-of over plain array
13-
function iterPlain() {
13+
function _iterPlain() {
1414
const arr = [fn1, fn2];
1515
for (const f of arr) {
1616
f();
1717
}
1818
}
1919

2020
// for-of over Set constructed from array
21-
function iterSet() {
21+
function _iterSet() {
2222
const arr = [fn3, fn4];
2323
const s = new Set(arr);
2424
for (const f of s) {

0 commit comments

Comments
 (0)