(queue)
| 14413 | |
| 14414 | var concurrentQueues = null; |
| 14415 | function pushConcurrentUpdateQueue(queue) { |
| 14416 | if (concurrentQueues === null) { |
| 14417 | concurrentQueues = [queue]; |
| 14418 | } else { |
| 14419 | concurrentQueues.push(queue); |
| 14420 | } |
| 14421 | } |
| 14422 | function finishQueueingConcurrentUpdates() { |
| 14423 | // Transfer the interleaved updates onto the main queue. Each queue has a |
| 14424 | // `pending` field and an `interleaved` field. When they are not null, they |
no test coverage detected
searching dependent graphs…