(baseState)
| 7203 | |
| 7204 | |
| 7205 | function createUpdateQueue(baseState) { |
| 7206 | var queue = { |
| 7207 | baseState: baseState, |
| 7208 | expirationTime: NoWork, |
| 7209 | first: null, |
| 7210 | last: null, |
| 7211 | callbackList: null, |
| 7212 | hasForceUpdate: false, |
| 7213 | isInitialized: false, |
| 7214 | capturedValues: null |
| 7215 | }; |
| 7216 | { |
| 7217 | queue.isProcessing = false; |
| 7218 | } |
| 7219 | return queue; |
| 7220 | } |
| 7221 | |
| 7222 | function insertUpdateIntoQueue(queue, update) { |
| 7223 | // Append the update to the end of the list. |
no outgoing calls
no test coverage detected