(expirationTime)
| 23446 | } |
| 23447 | |
| 23448 | function markSpawnedWork(expirationTime) { |
| 23449 | |
| 23450 | if (spawnedWorkDuringRender === null) { |
| 23451 | spawnedWorkDuringRender = [expirationTime]; |
| 23452 | } else { |
| 23453 | spawnedWorkDuringRender.push(expirationTime); |
| 23454 | } |
| 23455 | } |
| 23456 | |
| 23457 | function scheduleInteractions(root, expirationTime, interactions) { |
| 23458 |
no outgoing calls
no test coverage detected