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