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