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

Function zonePathName

packages/zone.js/lib/zone-spec/wtf.ts:186–194  ·  view source on GitHub ↗
(zone: Zone)

Source from the content-addressed store, hash-verified

184 }
185
186 function zonePathName(zone: Zone) {
187 let name: string = zone.name;
188 let localZone = zone.parent;
189 while (localZone != null) {
190 name = localZone.name + '::' + name;
191 localZone = localZone.parent;
192 }
193 return name;
194 }
195
196 (Zone as any)['wtfZoneSpec'] = !wtfEnabled ? null : new WtfZoneSpec();
197}

Callers 5

onForkMethod · 0.85
onInvokeMethod · 0.85
onScheduleTaskMethod · 0.85
onInvokeTaskMethod · 0.85
onCancelTaskMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…