-
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
feat: Handle native intersection types #7454
Conversation
Adds native intersection type handling to psalm, removing the previous `UnexpectedValueException`. Where an intersection is found in the parse tree, the types are resolved using the existing `Type::intersectUnionTypes` function, which I assume is being used when they're encountered in the existing docblock annotations. I've added a handful of tests to cover this, but they're certainly not exhaustive. Are there any specific edge cases I should target? This change feels way too simple... so apologies if I've missed something fundamental..!
I would add a test to make sure |
👍 This triggers a
I can try to do this, but there doesn't seem to be a similar rule for |
Please target on master, We try to target new features on master to avoid future maintenance on old branches. |
f24a0c2
to
299eca4
Compare
I've retargeted to It's meant allowing |
Well that's not great.
That'll be good to have! Looks like it needs to exclude stubs and ignored files somehow though. |
Woops... well, that broke a lot of stuff - more to do..! |
@petewalker Try |
@orklah @AndrolGenhald - I think it's all good to go now |
I'm not sure that failing test has anything to do with my change? Unless I'm missing something. |
Thanks! That looks great! |
I've raised this against 4.x, but not sure if it's for 4.x or master?
Adds native intersection type handling to psalm, removing the previous
UnexpectedValueException
.Where an intersection is found in the parse tree, the types are resolved using the existing
Type::intersectUnionTypes
function, which I assume is being used when they're encountered in the existing docblock annotations.I've added a handful of tests to cover this, but they're certainly not exhaustive. Are there any specific edge cases I should target?
This change feels way too simple... so apologies if I've missed something fundamental..!
Resolves #6413