()
| 13210 | } |
| 13211 | |
| 13212 | function flushInteractiveUpdates() { |
| 13213 | if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) { |
| 13214 | // Synchronously flush pending interactive updates. |
| 13215 | performWork(lowestPendingInteractiveExpirationTime, false, null); |
| 13216 | lowestPendingInteractiveExpirationTime = NoWork; |
| 13217 | } |
| 13218 | } |
| 13219 | |
| 13220 | function flushControlled(fn) { |
| 13221 | var previousIsBatchingUpdates = isBatchingUpdates; |
nothing calls this directly
no test coverage detected