@internal
(patch?: boolean)
| 172 | |
| 173 | /** @internal */ |
| 174 | private setPatchZone(patch?: boolean): void { |
| 175 | const doPatch = |
| 176 | patch == null ? this.strategyProvider.config.patchZone : patch; |
| 177 | this.patchZone = doPatch ? this.ngZone : false; |
| 178 | } |
| 179 | |
| 180 | /** @internal */ |
| 181 | private handleChangeDetection(): Unsubscribable { |