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