(name, func, context, a, b, c, d, e, f)
| 101 | } |
| 102 | |
| 103 | var invokeGuardedCallbackImpl = function (name, func, context, a, b, c, d, e, f) { |
| 104 | var funcArgs = Array.prototype.slice.call(arguments, 3); |
| 105 | |
| 106 | try { |
| 107 | func.apply(context, funcArgs); |
| 108 | } catch (error) { |
| 109 | this.onError(error); |
| 110 | } |
| 111 | }; |
| 112 | |
| 113 | { |
| 114 | // In DEV mode, we swap out invokeGuardedCallback for a special version |
nothing calls this directly
no outgoing calls
no test coverage detected