(el, condition)
| 8040 | } |
| 8041 | |
| 8042 | function addIfCondition (el, condition) { |
| 8043 | if (!el.ifConditions) { |
| 8044 | el.ifConditions = []; |
| 8045 | } |
| 8046 | el.ifConditions.push(condition); |
| 8047 | } |
| 8048 | |
| 8049 | function processOnce (el) { |
| 8050 | var once$$1 = getAndRemoveAttr(el, 'v-once'); |
no outgoing calls
no test coverage detected