Created
February 27, 2019 14:03
-
-
Save pankajparkar/2b5c84d5686544ac253c798d980b770f to your computer and use it in GitHub Desktop.
Simplistic tick implementation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tick(): void { | |
try { | |
this._views.forEach((view) => view.detectChanges()); | |
if (this._enforceNoNewChanges) { | |
this._views.forEach((view) => view.checkNoChanges()); | |
} | |
} catch (e) { | |
... | |
} finally { | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment