@@ -165,7 +165,7 @@ function flushFirstCallback() {
165
165
} else if ( nextAfterContinuation === firstCallbackNode ) {
166
166
// The new callback is the highest priority callback in the list.
167
167
firstCallbackNode = continuationNode ;
168
- ensureHostCallbackIsScheduled ( firstCallbackNode ) ;
168
+ ensureHostCallbackIsScheduled ( ) ;
169
169
}
170
170
171
171
var previous = nextAfterContinuation . previous ;
@@ -197,7 +197,7 @@ function flushImmediateWork() {
197
197
isExecutingCallback = false ;
198
198
if ( firstCallbackNode !== null ) {
199
199
// There's still work remaining. Request another callback.
200
- ensureHostCallbackIsScheduled ( firstCallbackNode ) ;
200
+ ensureHostCallbackIsScheduled ( ) ;
201
201
} else {
202
202
isHostCallbackScheduled = false ;
203
203
}
@@ -242,7 +242,7 @@ function flushWork(didTimeout) {
242
242
isExecutingCallback = false ;
243
243
if ( firstCallbackNode !== null ) {
244
244
// There's still work remaining. Request another callback.
245
- ensureHostCallbackIsScheduled ( firstCallbackNode ) ;
245
+ ensureHostCallbackIsScheduled ( ) ;
246
246
} else {
247
247
isHostCallbackScheduled = false ;
248
248
}
@@ -340,7 +340,7 @@ function unstable_scheduleCallback(callback, deprecated_options) {
340
340
if ( firstCallbackNode === null ) {
341
341
// This is the first callback in the list.
342
342
firstCallbackNode = newNode . next = newNode . previous = newNode ;
343
- ensureHostCallbackIsScheduled ( firstCallbackNode ) ;
343
+ ensureHostCallbackIsScheduled ( ) ;
344
344
} else {
345
345
var next = null ;
346
346
var node = firstCallbackNode ;
@@ -360,7 +360,7 @@ function unstable_scheduleCallback(callback, deprecated_options) {
360
360
} else if ( next === firstCallbackNode ) {
361
361
// The new callback has the earliest expiration in the entire list.
362
362
firstCallbackNode = newNode ;
363
- ensureHostCallbackIsScheduled ( firstCallbackNode ) ;
363
+ ensureHostCallbackIsScheduled ( ) ;
364
364
}
365
365
366
366
var previous = next . previous ;
0 commit comments