(
parentZoneDelegate: ZoneDelegate,
currentZone: Zone,
targetZone: Zone,
delegate: Function,
applyThis: any,
applyArgs?: any[],
source?: string,
)
| 161 | } |
| 162 | |
| 163 | onInvoke( |
| 164 | parentZoneDelegate: ZoneDelegate, |
| 165 | currentZone: Zone, |
| 166 | targetZone: Zone, |
| 167 | delegate: Function, |
| 168 | applyThis: any, |
| 169 | applyArgs?: any[], |
| 170 | source?: string, |
| 171 | ): any { |
| 172 | this.tryTriggerHasTask(parentZoneDelegate, currentZone, targetZone); |
| 173 | if (this._delegateSpec && this._delegateSpec.onInvoke) { |
| 174 | return this._delegateSpec.onInvoke( |
| 175 | parentZoneDelegate, |
| 176 | currentZone, |
| 177 | targetZone, |
| 178 | delegate, |
| 179 | applyThis, |
| 180 | applyArgs, |
| 181 | source, |
| 182 | ); |
| 183 | } else { |
| 184 | return parentZoneDelegate.invoke(targetZone, delegate, applyThis, applyArgs, source); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | onHandleError( |
| 189 | parentZoneDelegate: ZoneDelegate, |
nothing calls this directly
no test coverage detected