(fiber, domParent)
| 130 | } |
| 131 | |
| 132 | function commitDeletion(fiber, domParent) { |
| 133 | if (fiber.dom) { |
| 134 | domParent.removeChild(fiber.dom) |
| 135 | } else { |
| 136 | commitDeletion(fiber.child, domParent) |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | function render(element, container) { |
| 141 | wipRoot = { |