(cm, f)
| 3917 | |
| 3918 | // Run the given function in an operation |
| 3919 | function runInOp(cm, f) { |
| 3920 | if (cm.curOp) { return f() } |
| 3921 | startOperation(cm); |
| 3922 | try { return f() } |
| 3923 | finally { endOperation(cm); } |
| 3924 | } |
| 3925 | // Wraps a function in an operation. Returns the wrapped function. |
| 3926 | function operation(cm, f) { |
| 3927 | return function() { |
no test coverage detected