* Invokes a function in a given zone and catches any exceptions. * * Any exceptions thrown will be forwarded to [Zone.HandleError]. * * The invocation of `callback` can be intercepted by declaring [ZoneSpec.onInvoke]. The * handling of exceptions can be intercepted by declaring [ZoneS
(callback: Function, applyThis?: any, applyArgs?: any[], source?: string)
| 217 | * @returns {any} Value from the `callback` function. |
| 218 | */ |
| 219 | runGuarded<T>(callback: Function, applyThis?: any, applyArgs?: any[], source?: string): T; |
| 220 | |
| 221 | /** |
| 222 | * Execute the Task by restoring the [Zone.currentTask] in the Task's zone. |
no outgoing calls
no test coverage detected