(vm)
| 2227 | } |
| 2228 | |
| 2229 | function isInInactiveTree (vm) { |
| 2230 | while (vm && (vm = vm.$parent)) { |
| 2231 | if (vm._inactive) { return true } |
| 2232 | } |
| 2233 | return false |
| 2234 | } |
| 2235 | |
| 2236 | function activateChildComponent (vm, direct) { |
| 2237 | if (direct) { |
no outgoing calls
no test coverage detected