(element, container)
| 28 | let deletions = null |
| 29 | |
| 30 | function render(element, container) { |
| 31 | wipRoot = { |
| 32 | dom: container, |
| 33 | props: { |
| 34 | children: [element], |
| 35 | }, |
| 36 | alternate: currentRoot, |
| 37 | } |
| 38 | |
| 39 | deletions = [] |
| 40 | |
| 41 | nextUnitOfWork = wipRoot |
| 42 | } |
| 43 | |
| 44 | function workLoop(deadline) { |
| 45 | let shouldYield = false |
no outgoing calls
no test coverage detected