* Same as `run`, except that synchronous errors are caught and forwarded via `onError` and not * rethrown.
(fn: (...args: any[]) => T, applyThis?: any, applyArgs?: any[])
| 262 | * rethrown. |
| 263 | */ |
| 264 | runGuarded<T>(fn: (...args: any[]) => T, applyThis?: any, applyArgs?: any[]): T { |
| 265 | return (this as any as NgZonePrivate)._inner.runGuarded(fn, applyThis, applyArgs); |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Executes the `fn` function synchronously in Angular's parent zone and returns value returned by |
nothing calls this directly
no test coverage detected