(vnode)
| 6908 | // in case the child is also an abstract component, e.g. <keep-alive> |
| 6909 | // we want to recursively retrieve the real component to be rendered |
| 6910 | function getRealChild (vnode) { |
| 6911 | var compOptions = vnode && vnode.componentOptions; |
| 6912 | if (compOptions && compOptions.Ctor.options.abstract) { |
| 6913 | return getRealChild(getFirstComponentChild(compOptions.children)) |
| 6914 | } else { |
| 6915 | return vnode |
| 6916 | } |
| 6917 | } |
| 6918 | |
| 6919 | function extractTransitionData (comp) { |
| 6920 | var data = {}; |
no test coverage detected