(fn,a,b,c,d,e)
| 5860 | // scheduled work and instead do synchronous work. |
| 5861 | // Defaults |
| 5862 | var stackBatchedUpdates=function stackBatchedUpdates(fn,a,b,c,d,e){return fn(a,b,c,d,e);};var fiberBatchedUpdates=function fiberBatchedUpdates(fn,bookkeeping){return fn(bookkeeping);};function performFiberBatchedUpdates(fn,bookkeeping){// If we have Fiber loaded, we need to wrap this in a batching call so that |
| 5863 | // Fiber can apply its default priority for this call. |
| 5864 | return fiberBatchedUpdates(fn,bookkeeping);}function batchedUpdates(fn,bookkeeping){// We first perform work with the stack batching strategy, by passing our |
| 5865 | // indirection to it. |