-
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
Implement TypeSpecifierContext->getReturnType() #3878
Conversation
{ | ||
return self::create(self::CONTEXT_TRUE); | ||
return self::create(self::CONTEXT_TRUE, $returnType); |
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.
todo: bit-field cleanup after the main-point of this PR works
About true/truthy - let’s get rid of the bit-masking, I think they will be implemented as getReturnType()->isTrue()->yes()
The other one as getReturnType()->toBoolean()->isTrue()->yes()
24676ef
to
2c615a7
Compare
$negatedReturnType = null; | ||
if ($this->returnType !== null) { | ||
$baseType = $this->returnType->generalize(GeneralizePrecision::lessSpecific()); | ||
$negatedReturnType = TypeCombinator::remove($baseType, $this->returnType); |
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.
This won't work for unions of int. We will need 2 two return types in the context and toggle between them on negate()
had a different try with #3881 |
for expression like
if (doFoo() > 0)
we want to pass the context specific return-type information into type-specifying extensions so they can decide not just on true/truethy/false/falsy but also on "remaining return type values" (e.g. preg_match returns
0|1|false
)this should help to reduce the number of hardcoded hacks within the TypeSpecifier und move over some cases into extensions (which also allows 3rd party extensions todo similar things, as they can't hard-code hack the TypeSpecifier)
ondrej quoted: