(el)
| 8571 | } |
| 8572 | |
| 8573 | function genIf (el) { |
| 8574 | el.ifProcessed = true; // avoid recursion |
| 8575 | return genIfConditions(el.ifConditions.slice()) |
| 8576 | } |
| 8577 | |
| 8578 | function genIfConditions (conditions) { |
| 8579 | if (!conditions.length) { |
no test coverage detected