(updateQueue, context)
| 29373 | callback.call(context); |
| 29374 | } |
| 29375 | function commitHiddenCallbacks(updateQueue, context) { |
| 29376 | var hiddenCallbacks = updateQueue.shared.hiddenCallbacks; |
| 29377 | if (null !== hiddenCallbacks) |
| 29378 | for ( |
| 29379 | updateQueue.shared.hiddenCallbacks = null, updateQueue = 0; |
| 29380 | updateQueue < hiddenCallbacks.length; |
| 29381 | updateQueue++ |
| 29382 | ) |
| 29383 | callCallback(hiddenCallbacks[updateQueue], context); |
| 29384 | } |
| 29385 | function commitCallbacks(updateQueue, context) { |
| 29386 | var callbacks = updateQueue.callbacks; |
| 29387 | if (null !== callbacks) |
nothing calls this directly
no test coverage detected
searching dependent graphs…