(zone: NgZonePrivate)
| 524 | } |
| 525 | |
| 526 | function updateMicroTaskStatus(zone: NgZonePrivate) { |
| 527 | if ( |
| 528 | zone._hasPendingMicrotasks || |
| 529 | ((zone.shouldCoalesceEventChangeDetection || zone.shouldCoalesceRunChangeDetection) && |
| 530 | zone.callbackScheduled === true) |
| 531 | ) { |
| 532 | zone.hasPendingMicrotasks = true; |
| 533 | } else { |
| 534 | zone.hasPendingMicrotasks = false; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | function onEnter(zone: NgZonePrivate) { |
| 539 | zone._nesting++; |
no outgoing calls
no test coverage detected
searching dependent graphs…