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