(f)
| 3942 | } |
| 3943 | } |
| 3944 | function docMethodOp(f) { |
| 3945 | return function() { |
| 3946 | var cm = this.cm; |
| 3947 | if (!cm || cm.curOp) { return f.apply(this, arguments) } |
| 3948 | startOperation(cm); |
| 3949 | try { return f.apply(this, arguments) } |
| 3950 | finally { endOperation(cm); } |
| 3951 | } |
| 3952 | } |
| 3953 | |
| 3954 | // HIGHLIGHT WORKER |
| 3955 |
no test coverage detected