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