(parent, prop, index, node2)
| 5326 | }; |
| 5327 | } |
| 5328 | replace(parent, prop, index, node2) { |
| 5329 | if (parent) { |
| 5330 | if (index !== null) { |
| 5331 | parent[prop][index] = node2; |
| 5332 | } else { |
| 5333 | parent[prop] = node2; |
| 5334 | } |
| 5335 | } |
| 5336 | } |
| 5337 | remove(parent, prop, index) { |
| 5338 | if (parent) { |
| 5339 | if (index !== null) { |
no outgoing calls
no test coverage detected