-
-
Notifications
You must be signed in to change notification settings - Fork 418
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
Identity comparison with constructor sugar #2024
Comments
Whoever implements this should also be sure it accounts for cases where the operand is a |
What about with primitives? It's useful to do |
@Perelandric - I agree with you about primitives, but @Praetonus mentioned that primitives would be exempt from this rule.
|
Thanks @jemc, I missed that. |
I'll take this. |
Hi @ehooper. Awesome! I can add you to the ponylang org as a contributor? If yes, then I can add you as the assignee on this issue. |
@SeanTAllen: Sure! |
@ehooper you should have an invite. drop a note here once you've accepted and any team member can add you as the assignee. Thanks and good luck! |
@SeanTAllen accepted, thanks! |
@ehooper assigned! |
…#2024) An identity comparison with a new object will always be false, so this will catch mistaken 'is' comparisons without affecting legitimate uses.
…#2024) An identity comparison with a new object will always be false, so this will catch mistaken 'is' comparisons without affecting legitimate uses.
…#2024) An identity comparison with a new object will always be false, so this will catch mistaken 'is' comparisons without affecting legitimate uses.
Mentioned this in my PR, but I should have brought it up here: I didn't include array literals in these changes, but I think those could also be an issue. For example, |
This is a good point @ehooper. The error message for that should include something like |
Fixed with #2494 |
Thanks for the ping, @EpicEric! |
This idea stems from a discussion on IRC.
A common error for new users is to use
is
instead ofas
ormatch
to test the dynamic type of an object, resulting in code like that:Here,
String
is sugared toString.create()
, which means that the identity comparison is done with a newly created object and can never be true.We should issue a compiler error in those cases. Erroring when either operand of
is
is a sugaredcreate
constructor of a non-primitive type shouldn't catch legitimate cases.One possible implementation would be during the refer pass (as this pass happens before the expr pass where the
create
sugar is applied). It should test whether either operand ofis
is aTK_TYPEREF
on a non-primitive type, recursively.The text was updated successfully, but these errors were encountered: