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