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