(children)
| 8019 | } |
| 8020 | |
| 8021 | function findPrevElement (children) { |
| 8022 | var i = children.length; |
| 8023 | while (i--) { |
| 8024 | if (children[i].type === 1) { |
| 8025 | return children[i] |
| 8026 | } else { |
| 8027 | if ("development" !== 'production' && children[i].text !== ' ') { |
| 8028 | warn$2( |
| 8029 | "text \"" + (children[i].text.trim()) + "\" between v-if and v-else(-if) " + |
| 8030 | "will be ignored." |
| 8031 | ); |
| 8032 | } |
| 8033 | children.pop(); |
| 8034 | } |
| 8035 | } |
| 8036 | } |
| 8037 | |
| 8038 | function addIfCondition (el, condition) { |
| 8039 | if (!el.ifConditions) { |
no outgoing calls
no test coverage detected