MCPcopy Index your code
hub / github.com/angular/angular / onHandleError

Method onHandleError

packages/zone.js/lib/zone-spec/proxy.ts:188–199  ·  view source on GitHub ↗
(
    parentZoneDelegate: ZoneDelegate,
    currentZone: Zone,
    targetZone: Zone,
    error: any,
  )

Source from the content-addressed store, hash-verified

186 }
187
188 onHandleError(
189 parentZoneDelegate: ZoneDelegate,
190 currentZone: Zone,
191 targetZone: Zone,
192 error: any,
193 ): boolean {
194 if (this._delegateSpec && this._delegateSpec.onHandleError) {
195 return this._delegateSpec.onHandleError(parentZoneDelegate, currentZone, targetZone, error);
196 } else {
197 return parentZoneDelegate.handleError(targetZone, error);
198 }
199 }
200
201 onScheduleTask(
202 parentZoneDelegate: ZoneDelegate,

Callers

nothing calls this directly

Calls 1

handleErrorMethod · 0.65

Tested by

no test coverage detected