()
| 13338 | } |
| 13339 | |
| 13340 | function flushInteractiveUpdates() { |
| 13341 | if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) { |
| 13342 | // Synchronously flush pending interactive updates. |
| 13343 | performWork(lowestPendingInteractiveExpirationTime, false, null); |
| 13344 | lowestPendingInteractiveExpirationTime = NoWork; |
| 13345 | } |
| 13346 | } |
| 13347 | |
| 13348 | function flushControlled(fn) { |
| 13349 | var previousIsBatchingUpdates = isBatchingUpdates; |
nothing calls this directly
no test coverage detected