(value, func)
| 574 | } |
| 575 | |
| 576 | implicitLoop(value, func) { |
| 577 | if (this.shouldAutoIterate(value)) { |
| 578 | for (const x of value) func(x); |
| 579 | } else { |
| 580 | func(value); |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | /** |
| 585 | * Iterate over targets with a when condition, applying forward or reverse per element. |
no test coverage detected