(vm)
| 2221 | } |
| 2222 | |
| 2223 | function isInInactiveTree (vm) { |
| 2224 | while (vm && (vm = vm.$parent)) { |
| 2225 | if (vm._inactive) { return true } |
| 2226 | } |
| 2227 | return false |
| 2228 | } |
| 2229 | |
| 2230 | function activateChildComponent (vm, direct) { |
| 2231 | if (direct) { |
no outgoing calls
no test coverage detected