(queue)
| 13300 | |
| 13301 | var concurrentQueues = null; |
| 13302 | function pushConcurrentUpdateQueue(queue) { |
| 13303 | if (concurrentQueues === null) { |
| 13304 | concurrentQueues = [queue]; |
| 13305 | } else { |
| 13306 | concurrentQueues.push(queue); |
| 13307 | } |
| 13308 | } |
| 13309 | function finishQueueingConcurrentUpdates() { |
| 13310 | // Transfer the interleaved updates onto the main queue. Each queue has a |
| 13311 | // `pending` field and an `interleaved` field. When they are not null, they |
no test coverage detected
searching dependent graphs…