(
parentZoneDelegate: ZoneDelegate,
currentZone: Zone,
targetZone: Zone,
zoneSpec: ZoneSpec,
)
| 62 | static invokeTaskScope: {[key: string]: WtfEventFn} = {}; |
| 63 | |
| 64 | onFork( |
| 65 | parentZoneDelegate: ZoneDelegate, |
| 66 | currentZone: Zone, |
| 67 | targetZone: Zone, |
| 68 | zoneSpec: ZoneSpec, |
| 69 | ): Zone { |
| 70 | const retValue = parentZoneDelegate.fork(targetZone, zoneSpec); |
| 71 | WtfZoneSpec.forkInstance!(zonePathName(targetZone), retValue.name); |
| 72 | return retValue; |
| 73 | } |
| 74 | |
| 75 | onInvoke( |
| 76 | parentZoneDelegate: ZoneDelegate, |
nothing calls this directly
no test coverage detected