-
Notifications
You must be signed in to change notification settings - Fork 26.1k
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
fix(core): support injection of object with null constructor. #56553
Conversation
@@ -211,7 +211,7 @@ function handleInstanceCreatedByInjectorEvent( | |||
if (typeof value === 'object') { | |||
standaloneComponent = value?.constructor as Type<unknown>; | |||
} | |||
if (standaloneComponent === undefined || !isStandaloneComponent(standaloneComponent)) { | |||
if (standaloneComponent == undefined || !isStandaloneComponent(standaloneComponent)) { |
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.
I'd propose adding a quick comment here to mention that we handle both null
and undefined
(i.e. that the ==
is intentional).
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.
A test would also be desirable. You may also considering widening the type of standaloneComponent
to include null
, as currently there's no indication that the ==
can make a difference vs ===
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.
Object.constructor
is defined as Function | undefined
, won't even consider null
if I give it let standaloneComponent: Type<unknown> | undefined | null = undefined;
, so I'l go with the comment.
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.
That's because of the (unsound) cast to Type<unknown>
, which would cause any null
in the declaration site to become irrelevant.
ec79c16
to
1946a66
Compare
This is debug only code, it shouldn't have any consequences on prod build. fixes angular#56552
1946a66
to
7b8f801
Compare
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.
+1 to adding a test if possible, but otherwise this LGTM
This PR was merged into the repository by commit 331b30e. The changes were merged into the following branches: main, 18.0.x, 18.1.x |
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 is debug only code, it shouldn't have any consequences on prod build.
fixes #56552