(vnode)
| 6937 | } |
| 6938 | |
| 6939 | function hasParentTransition (vnode) { |
| 6940 | while ((vnode = vnode.parent)) { |
| 6941 | if (vnode.data.transition) { |
| 6942 | return true |
| 6943 | } |
| 6944 | } |
| 6945 | } |
| 6946 | |
| 6947 | function isSameChild (child, oldChild) { |
| 6948 | return oldChild.key === child.key && oldChild.tag === child.tag |