* @param {Node} [target] * @param {Object} [node]
(target, node)
| 104 | * @param {Object} [node] |
| 105 | */ |
| 106 | insertChildBefore(target, node) { |
| 107 | const children = this.$children; |
| 108 | children.splice(children.indexOf(target), 0, this.createChild(node)); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * @param {Node} [child] |
no test coverage detected