@@ -195,6 +195,7 @@ export default function<T, P, I, TI, HI, PI, C, CC, CX, PL>(
195
195
oldProps : P ,
196
196
newProps : P ,
197
197
rootContainerInstance : C ,
198
+ currentHostContext : CX ,
198
199
) {
199
200
// TODO: Type this specific to this type of component.
200
201
workInProgress . updateQueue = ( updatePayload : any ) ;
@@ -288,6 +289,7 @@ export default function<T, P, I, TI, HI, PI, C, CC, CX, PL>(
288
289
oldProps : P ,
289
290
newProps : P ,
290
291
rootContainerInstance : C ,
292
+ currentHostContext : CX ,
291
293
) {
292
294
// If there are no effects associated with this node, then none of our children had any updates.
293
295
// This guarantees that we can reuse all of them.
@@ -315,6 +317,7 @@ export default function<T, P, I, TI, HI, PI, C, CC, CX, PL>(
315
317
type ,
316
318
newProps ,
317
319
rootContainerInstance ,
320
+ currentHostContext ,
318
321
)
319
322
) {
320
323
markUpdate ( workInProgress ) ;
@@ -369,6 +372,7 @@ export default function<T, P, I, TI, HI, PI, C, CC, CX, PL>(
369
372
oldProps : P ,
370
373
newProps : P ,
371
374
rootContainerInstance : C ,
375
+ currentHostContext : CX ,
372
376
) {
373
377
// Noop
374
378
} ;
@@ -450,6 +454,7 @@ export default function<T, P, I, TI, HI, PI, C, CC, CX, PL>(
450
454
oldProps ,
451
455
newProps ,
452
456
rootContainerInstance ,
457
+ currentHostContext ,
453
458
) ;
454
459
455
460
if ( current . ref !== workInProgress . ref ) {
@@ -506,6 +511,7 @@ export default function<T, P, I, TI, HI, PI, C, CC, CX, PL>(
506
511
type ,
507
512
newProps ,
508
513
rootContainerInstance ,
514
+ currentHostContext ,
509
515
)
510
516
) {
511
517
markUpdate ( workInProgress ) ;
0 commit comments