(
parentZoneDelegate: ZoneDelegate,
currentZone: Zone,
targetZone: Zone,
task: Task,
applyThis: any,
applyArgs: any,
)
| 2387 | } |
| 2388 | }, |
| 2389 | onInvokeTask( |
| 2390 | parentZoneDelegate: ZoneDelegate, |
| 2391 | currentZone: Zone, |
| 2392 | targetZone: Zone, |
| 2393 | task: Task, |
| 2394 | applyThis: any, |
| 2395 | applyArgs: any, |
| 2396 | ) { |
| 2397 | hookSpy1(); |
| 2398 | return parentZoneDelegate.invokeTask(targetZone, task, applyThis, applyArgs); |
| 2399 | }, |
| 2400 | }); |
| 2401 | const zone2 = Zone.current.fork({ |
| 2402 | name: 'zone2', |
nothing calls this directly
no test coverage detected