()
| 14228 | } |
| 14229 | |
| 14230 | function flushInteractiveUpdates() { |
| 14231 | if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) { |
| 14232 | // Synchronously flush pending interactive updates. |
| 14233 | performWork(lowestPendingInteractiveExpirationTime, false, null); |
| 14234 | lowestPendingInteractiveExpirationTime = NoWork; |
| 14235 | } |
| 14236 | } |
| 14237 | |
| 14238 | function flushControlled(fn) { |
| 14239 | var previousIsBatchingUpdates = isBatchingUpdates; |
nothing calls this directly
no test coverage detected