Skip to content
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

Closed
Praetonus opened this issue Jul 9, 2017 · 14 comments
Closed

Identity comparison with constructor sugar #2024

Praetonus opened this issue Jul 9, 2017 · 14 comments
Assignees
Labels
help wanted Extra attention is needed

Comments

@Praetonus
Copy link
Member

Praetonus commented Jul 9, 2017

This idea stems from a discussion on IRC.

A common error for new users is to use is instead of as or match to test the dynamic type of an object, resulting in code like that:

if obj is String then ...

Here, String is sugared to String.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 sugared create 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 of is is a TK_TYPEREF on a non-primitive type, recursively.

@jemc
Copy link
Member

jemc commented Jul 10, 2017

Whoever implements this should also be sure it accounts for cases where the operand is a TK_TUPLE that includes a TK_TYPEREF, or a TK_SEQ whose final child is a TK_TYPEREF.

@Perelandric
Copy link
Contributor

What about with primitives? It's useful to do if x is Foo then ... end. Then again, you can have unexpected side effects from a constructor being invoked.

@jemc
Copy link
Member

jemc commented Jul 19, 2017

@Perelandric - I agree with you about primitives, but @Praetonus mentioned that primitives would be exempt from this rule.

Erroring when either operand of is is a sugared create constructor of a non-primitive type shouldn't catch legitimate cases.

@Perelandric
Copy link
Contributor

Thanks @jemc, I missed that.

@SeanTAllen SeanTAllen added the help wanted Extra attention is needed label Nov 5, 2017
@ehooper
Copy link
Contributor

ehooper commented Jan 10, 2018

I'll take this.

@SeanTAllen
Copy link
Member

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.

@ehooper
Copy link
Contributor

ehooper commented Jan 10, 2018

@SeanTAllen: Sure!

@SeanTAllen
Copy link
Member

@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!

@ehooper
Copy link
Contributor

ehooper commented Jan 10, 2018

@SeanTAllen accepted, thanks!

@SeanTAllen
Copy link
Member

@ehooper assigned!

ehooper added a commit to ehooper/ponyc that referenced this issue Jan 14, 2018
…#2024)

An identity comparison with a new object will always be false, so this
will catch mistaken 'is' comparisons without affecting legitimate uses.
ehooper added a commit to ehooper/ponyc that referenced this issue Jan 15, 2018
…#2024)

An identity comparison with a new object will always be false, so this
will catch mistaken 'is' comparisons without affecting legitimate uses.
ehooper added a commit to ehooper/ponyc that referenced this issue Jan 17, 2018
…#2024)

An identity comparison with a new object will always be false, so this
will catch mistaken 'is' comparisons without affecting legitimate uses.
@ehooper
Copy link
Contributor

ehooper commented Jan 17, 2018

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, [1; 2; 3] is [1; 2; 3] is false, which could cause the same kind of confusion.

@Praetonus
Copy link
Member Author

This is a good point @ehooper. The error message for that should include something like use a tuple if you want to compare the individual elements.

jemc pushed a commit that referenced this issue Jan 18, 2018
…2494)

Compile error when comparing sugared constructors with 'is' or 'isnt' (#2024)
@EpicEric
Copy link
Contributor

EpicEric commented Apr 3, 2018

Fixed with #2494

@jemc jemc closed this as completed Apr 3, 2018
@jemc
Copy link
Member

jemc commented Apr 3, 2018

Thanks for the ping, @EpicEric!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

7 participants