(currentQueue)
| 11800 | } |
| 11801 | |
| 11802 | function cloneUpdateQueue(currentQueue) { |
| 11803 | var queue = { |
| 11804 | baseState: currentQueue.baseState, |
| 11805 | firstUpdate: currentQueue.firstUpdate, |
| 11806 | lastUpdate: currentQueue.lastUpdate, |
| 11807 | |
| 11808 | // TODO: With resuming, if we bail out and resuse the child tree, we should |
| 11809 | // keep these effects. |
| 11810 | firstCapturedUpdate: null, |
| 11811 | lastCapturedUpdate: null, |
| 11812 | |
| 11813 | firstEffect: null, |
| 11814 | lastEffect: null, |
| 11815 | |
| 11816 | firstCapturedEffect: null, |
| 11817 | lastCapturedEffect: null |
| 11818 | }; |
| 11819 | return queue; |
| 11820 | } |
| 11821 | |
| 11822 | function createUpdate(expirationTime) { |
| 11823 | return { |
no outgoing calls
no test coverage detected