()
| 13307 | } |
| 13308 | |
| 13309 | function flushInteractiveUpdates() { |
| 13310 | if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) { |
| 13311 | // Synchronously flush pending interactive updates. |
| 13312 | performWork(lowestPendingInteractiveExpirationTime, false, null); |
| 13313 | lowestPendingInteractiveExpirationTime = NoWork; |
| 13314 | } |
| 13315 | } |
| 13316 | |
| 13317 | function flushControlled(fn) { |
| 13318 | var previousIsBatchingUpdates = isBatchingUpdates; |
nothing calls this directly
no test coverage detected