()
| 18371 | } |
| 18372 | |
| 18373 | function commitBeforeMutationLifecycles() { |
| 18374 | while (nextEffect !== null) { |
| 18375 | { |
| 18376 | setCurrentFiber(nextEffect); |
| 18377 | } |
| 18378 | |
| 18379 | var effectTag = nextEffect.effectTag; |
| 18380 | if (effectTag & Snapshot) { |
| 18381 | recordEffect(); |
| 18382 | var current$$1 = nextEffect.alternate; |
| 18383 | commitBeforeMutationLifeCycles(current$$1, nextEffect); |
| 18384 | } |
| 18385 | |
| 18386 | nextEffect = nextEffect.nextEffect; |
| 18387 | } |
| 18388 | |
| 18389 | { |
| 18390 | resetCurrentFiber(); |
| 18391 | } |
| 18392 | } |
| 18393 | |
| 18394 | function commitAllLifeCycles(finishedRoot, committedExpirationTime) { |
| 18395 | { |
nothing calls this directly
no test coverage detected