(f)
| 1993 | }; |
| 1994 | } |
| 1995 | function docMethodOp(f) { |
| 1996 | return function() { |
| 1997 | var cm = this.cm; |
| 1998 | if (!cm || cm.curOp) return f.apply(this, arguments); |
| 1999 | startOperation(cm); |
| 2000 | try { return f.apply(this, arguments); } |
| 2001 | finally { endOperation(cm); } |
| 2002 | }; |
| 2003 | } |
| 2004 | |
| 2005 | // VIEW TRACKING |
| 2006 |
no test coverage detected
searching dependent graphs…