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

Method _updateTaskCount

packages/zone.js/lib/zone-impl.ts:1087–1095  ·  view source on GitHub ↗
(task: ZoneTask<any>, count: number)

Source from the content-addressed store, hash-verified

1085 }
1086
1087 private _updateTaskCount(task: ZoneTask<any>, count: number) {
1088 const zoneDelegates = task._zoneDelegates!;
1089 if (count == -1) {
1090 task._zoneDelegates = null;
1091 }
1092 for (let i = 0; i < zoneDelegates.length; i++) {
1093 zoneDelegates[i]._updateTaskCount(task.type, count);
1094 }
1095 }
1096 }
1097
1098 const DELEGATE_ZS: ZoneSpec = {

Callers 4

runTaskMethod · 0.95
scheduleTaskMethod · 0.95
cancelTaskMethod · 0.95
patchTimerFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected