-
Notifications
You must be signed in to change notification settings - Fork 26.2k
refactor(core): clean up support for ES2015 constructor delegation #30368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This commit moves the delegated constructor detection to a helper function and also adds more test coverage. The original code for this came from angular#24156 thanks to @ts2do. Closes angular#24156 Closes angular#27267 // FW-1310
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Kudos for adding the missing tests Pete. |
The kudos should really go to @ts2do |
…ngular#30368) This commit moves the delegated constructor detection to a helper function and also adds more test coverage. The original code for this came from angular#24156 thanks to @ts2do. Closes angular#24156 Closes angular#27267 // FW-1310 PR Close angular#30368
Is this released in Angular 8? |
Yes it is in 8.1.0 and onwards. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This commit moves the delegated constructor detection to a helper
function and also adds more test coverage.
The original code for this came from #24156
thanks to @ts2do.
Closes #24156
Closes #27267
// FW-1310