(reactPriorityLevel, callback, options)
| 11174 | return Scheduler_runWithPriority(priorityLevel, fn); |
| 11175 | } |
| 11176 | function scheduleCallback(reactPriorityLevel, callback, options) { |
| 11177 | var priorityLevel = reactPriorityToSchedulerPriority(reactPriorityLevel); |
| 11178 | return Scheduler_scheduleCallback(priorityLevel, callback, options); |
| 11179 | } |
| 11180 | function scheduleSyncCallback(callback) { |
| 11181 | // Push this callback into an internal queue. We'll flush these either in |
| 11182 | // the next tick, or earlier if something calls `flushSyncCallbackQueue`. |
no test coverage detected