(root, element)
| 15324 | } |
| 15325 | }; |
| 15326 | var scheduleRoot = function (root, element) { |
| 15327 | { |
| 15328 | if (root.context !== emptyContextObject) { |
| 15329 | // Super edge case: root has a legacy _renderSubtree context |
| 15330 | // but we don't know the parentComponent so we can't pass it. |
| 15331 | // Just ignore. We'll delete this with _renderSubtree code path later. |
| 15332 | return; |
| 15333 | } |
| 15334 | |
| 15335 | flushPassiveEffects(); |
| 15336 | syncUpdates(function () { |
| 15337 | updateContainer(element, root, null, null); |
| 15338 | }); |
| 15339 | } |
| 15340 | }; |
| 15341 | |
| 15342 | function scheduleFibersWithFamiliesRecursively(fiber, updatedFamilies, staleFamilies) { |
| 15343 | { |
nothing calls this directly
no test coverage detected