()
| 14115 | } |
| 14116 | |
| 14117 | function flushInteractiveUpdates() { |
| 14118 | if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) { |
| 14119 | // Synchronously flush pending interactive updates. |
| 14120 | performWork(lowestPendingInteractiveExpirationTime, false, null); |
| 14121 | lowestPendingInteractiveExpirationTime = NoWork; |
| 14122 | } |
| 14123 | } |
| 14124 | |
| 14125 | function flushControlled(fn) { |
| 14126 | var previousIsBatchingUpdates = isBatchingUpdates; |
nothing calls this directly
no test coverage detected