(fn, a)
| 25559 | } |
| 25560 | } |
| 25561 | function batchedEventUpdates$1(fn, a) { |
| 25562 | var prevExecutionContext = executionContext; |
| 25563 | executionContext |= EventContext; |
| 25564 | |
| 25565 | try { |
| 25566 | return fn(a); |
| 25567 | } finally { |
| 25568 | executionContext = prevExecutionContext; |
| 25569 | |
| 25570 | if (executionContext === NoContext) { |
| 25571 | // Flush the immediate callbacks that were scheduled during this batch |
| 25572 | flushSyncCallbackQueue(); |
| 25573 | } |
| 25574 | } |
| 25575 | } |
| 25576 | function discreteUpdates$1(fn, a, b, c, d) { |
| 25577 | var prevExecutionContext = executionContext; |
| 25578 | executionContext |= DiscreteEventContext; |
nothing calls this directly
no test coverage detected