(parent, elm, ref)
| 4703 | } |
| 4704 | |
| 4705 | function insert (parent, elm, ref) { |
| 4706 | if (isDef(parent)) { |
| 4707 | if (isDef(ref)) { |
| 4708 | nodeOps.insertBefore(parent, elm, ref); |
| 4709 | } else { |
| 4710 | nodeOps.appendChild(parent, elm); |
| 4711 | } |
| 4712 | } |
| 4713 | } |
| 4714 | |
| 4715 | function createChildren (vnode, children, insertedVnodeQueue) { |
| 4716 | if (Array.isArray(children)) { |
no test coverage detected