(f)
| 3217 | }; |
| 3218 | } |
| 3219 | function docMethodOp(f) { |
| 3220 | return function() { |
| 3221 | var cm = this.cm; |
| 3222 | if (!cm || cm.curOp) return f.apply(this, arguments); |
| 3223 | startOperation(cm); |
| 3224 | try { return f.apply(this, arguments); } |
| 3225 | finally { endOperation(cm); } |
| 3226 | }; |
| 3227 | } |
| 3228 | |
| 3229 | // VIEW TRACKING |
| 3230 |
no test coverage detected