(expirationTime)
| 11820 | } |
| 11821 | |
| 11822 | function createUpdate(expirationTime) { |
| 11823 | return { |
| 11824 | expirationTime: expirationTime, |
| 11825 | |
| 11826 | tag: UpdateState, |
| 11827 | payload: null, |
| 11828 | callback: null, |
| 11829 | |
| 11830 | next: null, |
| 11831 | nextEffect: null |
| 11832 | }; |
| 11833 | } |
| 11834 | |
| 11835 | function appendUpdateToQueue(queue, update) { |
| 11836 | // Append the update to the end of the list. |
no outgoing calls
no test coverage detected