(root, element)
| 27847 | } |
| 27848 | }; |
| 27849 | var scheduleRoot = function (root, element) { |
| 27850 | { |
| 27851 | if (root.context !== emptyContextObject) { |
| 27852 | // Super edge case: root has a legacy _renderSubtree context |
| 27853 | // but we don't know the parentComponent so we can't pass it. |
| 27854 | // Just ignore. We'll delete this with _renderSubtree code path later. |
| 27855 | return; |
| 27856 | } |
| 27857 | |
| 27858 | flushPassiveEffects(); |
| 27859 | flushSync(function () { |
| 27860 | updateContainer(element, root, null, null); |
| 27861 | }); |
| 27862 | } |
| 27863 | }; |
| 27864 | |
| 27865 | function scheduleFibersWithFamiliesRecursively(fiber, updatedFamilies, staleFamilies) { |
| 27866 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…