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