(expirationTime)
| 27006 | } |
| 27007 | |
| 27008 | function markSpawnedWork(expirationTime) { |
| 27009 | |
| 27010 | if (spawnedWorkDuringRender === null) { |
| 27011 | spawnedWorkDuringRender = [expirationTime]; |
| 27012 | } else { |
| 27013 | spawnedWorkDuringRender.push(expirationTime); |
| 27014 | } |
| 27015 | } |
| 27016 | |
| 27017 | function scheduleInteractions(root, expirationTime, interactions) { |
| 27018 |
no outgoing calls
no test coverage detected