(f)
| 3087 | }; |
| 3088 | } |
| 3089 | function docMethodOp(f) { |
| 3090 | return function() { |
| 3091 | var cm = this.cm; |
| 3092 | if (!cm || cm.curOp) return f.apply(this, arguments); |
| 3093 | startOperation(cm); |
| 3094 | try { return f.apply(this, arguments); } |
| 3095 | finally { endOperation(cm); } |
| 3096 | }; |
| 3097 | } |
| 3098 | |
| 3099 | // VIEW TRACKING |
| 3100 |
no test coverage detected