(op, endCb)
| 2041 | } |
| 2042 | |
| 2043 | function finishOperation(op, endCb) { |
| 2044 | var group = op.ownsGroup; |
| 2045 | if (!group) { return } |
| 2046 | |
| 2047 | try { fireCallbacksForOps(group); } |
| 2048 | finally { |
| 2049 | operationGroup = null; |
| 2050 | endCb(group); |
| 2051 | } |
| 2052 | } |
| 2053 | |
| 2054 | var orphanDelayedCallbacks = null; |
| 2055 |
no test coverage detected