()
| 9203 | this !== undefined ? this : null; |
| 9204 | |
| 9205 | function tryCatcher() { |
| 9206 | try { |
| 9207 | var target = tryCatchTarget; |
| 9208 | tryCatchTarget = null; |
| 9209 | return target.apply(this, arguments); |
| 9210 | } catch (e) { |
| 9211 | errorObj.e = e; |
| 9212 | return errorObj; |
| 9213 | } |
| 9214 | } |
| 9215 | function tryCatch(fn) { |
| 9216 | tryCatchTarget = fn; |
| 9217 | return tryCatcher; |
nothing calls this directly
no outgoing calls
no test coverage detected