(cm, f)
| 5517 | |
| 5518 | // Run the given function in an operation |
| 5519 | function runInOp(cm, f) { |
| 5520 | if (cm.curOp) { |
| 5521 | return f() |
| 5522 | } |
| 5523 | startOperation(cm) |
| 5524 | try { |
| 5525 | return f() |
| 5526 | } finally { |
| 5527 | endOperation(cm) |
| 5528 | } |
| 5529 | } |
| 5530 | // Wraps a function in an operation. Returns the wrapped function. |
| 5531 | function operation(cm, f) { |
| 5532 | return function () { |
no test coverage detected