()
| 13977 | } |
| 13978 | |
| 13979 | function flushInteractiveUpdates() { |
| 13980 | if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) { |
| 13981 | // Synchronously flush pending interactive updates. |
| 13982 | performWork(lowestPendingInteractiveExpirationTime, false, null); |
| 13983 | lowestPendingInteractiveExpirationTime = NoWork; |
| 13984 | } |
| 13985 | } |
| 13986 | |
| 13987 | function flushControlled(fn) { |
| 13988 | var previousIsBatchingUpdates = isBatchingUpdates; |
nothing calls this directly
no test coverage detected