(reactPriorityLevel, callback, options)
| 14734 | return Scheduler_runWithPriority(priorityLevel, fn); |
| 14735 | } |
| 14736 | function scheduleCallback(reactPriorityLevel, callback, options) { |
| 14737 | var priorityLevel = reactPriorityToSchedulerPriority(reactPriorityLevel); |
| 14738 | return Scheduler_scheduleCallback(priorityLevel, callback, options); |
| 14739 | } |
| 14740 | function scheduleSyncCallback(callback) { |
| 14741 | // Push this callback into an internal queue. We'll flush these either in |
| 14742 | // the next tick, or earlier if something calls `flushSyncCallbackQueue`. |
no test coverage detected