(vnode)
| 6454 | // in case the child is also an abstract component, e.g. <keep-alive> |
| 6455 | // we want to recursively retrieve the real component to be rendered |
| 6456 | function getRealChild (vnode) { |
| 6457 | var compOptions = vnode && vnode.componentOptions; |
| 6458 | if (compOptions && compOptions.Ctor.options.abstract) { |
| 6459 | return getRealChild(getFirstComponentChild(compOptions.children)) |
| 6460 | } else { |
| 6461 | return vnode |
| 6462 | } |
| 6463 | } |
| 6464 | |
| 6465 | function extractTransitionData (comp) { |
| 6466 | var data = {}; |
no test coverage detected