-
Notifications
You must be signed in to change notification settings - Fork 504
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
Narrow type on setting offsets of properties #3699
Narrow type on setting offsets of properties #3699
Conversation
fee1250
to
9564df9
Compare
{ | ||
$this->integers[] = 4; | ||
$this->integers['foo'] = 5; | ||
$this->integers[] = 'foo'; |
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.
if you don't remove lines in test-files but leave them empty, you don't need to adjust all the line numbers in the expectations (and get a smaller, easier to review PR)
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.
sorry, didn't get that fully. can you explain what you mean? because it highly annoys me that I had to do things there yeah.. I would have not touched these even, but the problem here is that invalid assignments would widen the array type and influence other errors, so I had to separate them a bit more.
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.
if you add 3 empty lines, line 18,19,20 (so the ones you deleted) all following line-numbers in the file will not be reduced by 3
(so you don't delete lines in existing tests, but replace them with a empty lines)
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.
ah simple like that, ok, good idea I guess. let me clean this up as much as I can then
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.
hmm I don't think this helps much here tbh. I can make like 3 of them go away maybe, but the rest of the line numbers increased, so I can't do anything about them.
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.
one idea, if you want to invest a few more time:
don't change the test (or only add comments after existing lines) instead of moving lines arround
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.
yeah, it's a reasonable approach I guess. I'll revert changes, adapt the test classes to show changed behaviour and add new tests where the existing ones did not pick up issues any more as before. that should also help show the behaviour changes better 👍
UPDATE: think I'll wait for some feedback from the boss before spending more time on formatting these files :) e.g. I hate things like $this->intArray[new \DateTimeImmutable()] = 1;
would set the property type in that scope to non-empty-array<*ERROR*, mixed>
which allows all kind of keys. I believe the tests need to be restructured, otherwise they look very weird. my main argument for this behaviour change (except that it fixes the linked issues) is that it works like that for other properties too, see https://phpstan.org/r/e8909d22-857a-4dea-8d88-4cb13704b63e
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.
Please don't change existing tests at all, they are there for a reason. The reason might be why OriginalPropertyTypeExpr exists.
If you change existing tests it's impossible for me to review the PR.
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.
Sure, will revert those changes again. We are going to see the annoying behaviour again which I described above: modifying the prop and the re-using it, sometimes in an error state, changes how later prop changes behave :/ doing this change without adapting these tests a bit is most likely not possible
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.
sorry, was on vacation :) reverted those test changes and those ugly failures should show up again. you can see that a couple of those are pretty weird. right now I'm not a 100% sure any more if the types should adapt on invalid type assignment or not tbh. I was expecting it to adapt as e.g. https://phpstan.org/r/9f4469db-571c-4967-a79c-ebf0e8ab6ba1 does too. I believed that those couple of weird test errors are test issues only and should not cause issues in the real world.
9564df9
to
8bf4588
Compare
This pull request has been marked as ready for review. |
8bf4588
to
1f9f463
Compare
97e50b9
to
6ba6c71
Compare
I'd like to look at this but the tests are failing. |
thx for checking this. the issue here is that the changes start breaking the tests and re-ordering things, to remove dependencies basically, avoids that, but obviously this was also considered to be bad. we're at a dead-end here. I was arguing that I think the tests need re-arranging and the behaviour changes made sense to me, see #3699 (comment) but I'm not sure if the example mentioned there is still a good example of a similar behaviour. |
Surface level idea (didn't think about the issue that much recently): what about keeping the logic as it's currently done in your PR, but do some extra work to make sure the error messages do not change by putting the original property type description into them? |
that makes total sense. I think I tried and it was basically in direct conflict with those reported errors. in terms of, trying to not change that behaviour also does not fix the linked issues then. but I need to look at this once more with a fresh mind maybe. |
Please read my response carefully. My point was to keep the behaviour of the PR, just improve the messages so that they don't change. |
6ba6c71
to
f9ee99a
Compare
ah sorry, didn't get that. good point, that would improve things. but there will be some cases where new errors are added or some don't show any more. I did some checking, but the core issue here seems to be that the thing that is assigned has a different type and I'm not sure how to change the message without changing the logic, don't think that's possible here. or I'm missing something :/ |
Please add regression test for (and mention it in the original description): phpstan/phpstan#12565 |
I'll try to think about what we can do about the messages. |
f9ee99a
to
2cfa07c
Compare
ok thx, done |
2cfa07c
to
2459bef
Compare
The OriginalPropertyTypeExpr is here for a reason. I really dislike the error messages and the error lines reported without it. That said I realized 3 of 4 of the issues are about ArrayAccess, so I hardcoded the solution just for that. |
2459bef
to
280b718
Compare
Thank you! |
Oh, thx! |
Removes
OriginalPropertyTypeExpr
which now leads to the expression in the scope being used for property fetches when determining the result of an array offset set.I believe this makes things simpler and more consistent and expected. But it also showed that some small restructuring of tests for
TypesAssignedToPropertiesRule
was needed to avoid dependencies and weirdness with types that were changed. I was hoping that integration tests will show us how "annoying" this is.Fixes phpstan/phpstan#6398
Fixes phpstan/phpstan#6571
Fixes phpstan/phpstan#12565