* Invoke this method to explicitly process change detection and its side-effects. * * In development mode, `tick()` also performs a second change detection cycle to ensure that no * further changes are detected. If additional changes are picked up during this second cycle, * bindings in
()
| 531 | * detection pass during which all change detection must complete. |
| 532 | */ |
| 533 | tick(): void { |
| 534 | if (!this.zonelessEnabled) { |
| 535 | this.dirtyFlags |= ApplicationRefDirtyFlags.ViewTreeGlobal; |
| 536 | } |
| 537 | this._tick(); |
| 538 | } |
| 539 | |
| 540 | /** @internal */ |
| 541 | _tick(): void { |