(zone: NgZonePrivate)
| 536 | } |
| 537 | |
| 538 | function onEnter(zone: NgZonePrivate) { |
| 539 | zone._nesting++; |
| 540 | if (zone.isStable) { |
| 541 | zone.isStable = false; |
| 542 | zone.onUnstable.emit(null); |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | function onLeave(zone: NgZonePrivate) { |
| 547 | zone._nesting--; |
no test coverage detected
searching dependent graphs…