-
Notifications
You must be signed in to change notification settings - Fork 676
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
update property map #8000
update property map #8000
Conversation
90c7c63
to
877c9a2
Compare
For the code style issue, shall I suppress the phpcs issue or change the function to a variable? |
We should also decide how we want to handle "manual" classes which are currently dropped by this PR as there is no documentation. |
dictionaries/PropertyMap.php
Outdated
'actualEncoding' => 'string', | ||
'encoding' => 'string', | ||
'version' => 'string', | ||
'CommonMark\\Node' => [ |
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 think the offset should be a lowercase string
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.
Shall I also lowercase the property names?
They were so in the original file but I currently keep them as documented in the XML files.
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.
Interesting:
$cased_key = strtolower($key); |
Psalm does a strtolower by itself on every class name. It would be best to do it on generation instead of in execution (we could drop the whole loop then). There is no such requirement on property names (I'm also not sure they're case insensitive)
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.
Did both in latest commit.
The removal of the loop I left for a later commit/PR, as we have some more strtolower()
calls over the code base where the property map is used.
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.
using strtolower when using propertymap is expected, we'll retrieve all sort of case from user code that we need to normalize
Yeah, this will cause issues. I'm fine with keeping an automatically generated file, but if we do, we should create a second one with manual additions.
I think you can suppress it. Bin files are pretty special in that regard |
And removals I think. For stuff overridden by stubs it would probably be less confusing if they were omitted from the PropertyMap instead of being unused. |
877c9a2
to
ef90170
Compare
I am unsure how I should approach the removal file. |
removal could be as simple as having a key in the second file that match the first file but without any property. If we merge the two arrays, the second key will simply overwrite the first. Maybe not very self-explanatory... |
Stubs can support much more than the property map, and if a stub exists it seems like it might be confusing to future contributors for the property map to exist as well. See eg this stub for DOMNode that marks most properties as Also, I would like to get Psalm to not load extension classes unless the extension is required by the project. I'm not entirely sure how the property map works with that (I think maybe property map doesn't matter unless it's in callmap as well?), but I think it would be best if fully stubbed classes from PHP extensions didn't exist in the property map.
Haven't looked at the implementation, but maybe something like |
Implemented the extraction of stub class names and skipping them when generating the propertymap. Checking the tests, I found that the stubs do not define the properties at all. I also found a little discrepancy for psalm/dictionaries/PropertyMap.php Line 321 in 4ce8a06
While PHP Docs state (for parent class DOMNode ): DOMNamedNodeMap|null .Shall I add the attributes to both (DOMNode and DOMElement ) in the stub? The first one nullable and the second not?
What do you think? |
I wouldn't bother, that should mostly be handled by #7641 whenever I get the time and motivation to finish it (hopefully soon).
I went through most of these by hand pretty extensively for #7641, and my comment here suggests that it's intentional. You can look into it further to confirm if you'd like, iirc I actually checked php-src for those to make sure they couldn't be null. |
So how shall I'll fix the tests regarding the property maps? However, one is remaining and seems fishy to me. psalm/tests/PropertyTypeTest.php Line 510 in 3aadec6
Where does the property name come from? The tested class does not declare it and does not extend any parent or use traits.So the failure seems correct to me and therefore the test seems wrong.
Looks good to me. Can we make a roadmap on this? |
Documentation do mention it though: https://www.php.net/manual/en/class.reflectionmethod.php |
You are right, it is missing in psalm/stubs/Reflection.phpstub Line 93 in 3aadec6
In fact, the whole inheritance is also misisng in there, most only implement Reflector .
After updating the stub files locally, all went smooth. So it seems we definitely need #7641 in here to make the tests pass. |
I'll find some time this week to go through that, I might end up splitting it up into separate PRs for each stub so more important ones can be merged sooner. |
No need to rush this, I'll be on vacation until June 13th from tomorrow on. |
So, I am back from vacation. |
I've been a bit busy lately, give me a day or two and I'll pull that out into separate PRs that we can review and merge quickly (I hope). |
I haven't forgotten about this! I wasn't super clean about keeping the commits on that PR fully separate for the different stubs, so pulling it apart isn't as easy as I expected, I should be able to get the DOM one in a separate PR today or tomorrow though. |
Opened #8140. |
Shall I rebase on #8140 or do we want to merge that one? |
It would probably be easier to target this one on master I think |
46d690b
to
aebe3c4
Compare
I have updated the target branch and rebased onto current master. |
We need a defined, reproducible starting point.
The class names in property map are now always lowercase
aebe3c4
to
631936c
Compare
This should fix the now failing tests as the properties got removed from the autogenerated property map.
We now have the extensions in a sub directory and therefore have to skip that one.
Do I have to rebase against current master again? @orklah is this ready from your POV? |
There is still an error in CI that should be adressed before I can merge this |
Ok, I fixed the shepherd run, there was an issue in code I did not touch. I have no idea how to fix the "label" run - I suppose this needs to re run to spit out any information as you just added the label. |
Thanks! |
This is an attempt at fixing #7983 by:
Currently tests fail on my machine but I submit anyway to have a discussion base if this is the general correct direction.