(
parentZoneDelegate: ZoneDelegate,
currentZone: Zone,
targetZone: Zone,
error: any,
)
| 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, |
nothing calls this directly
no test coverage detected