-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Don't widen ternary type in return statement. #31518
Comments
I’m thinking the inconsistency here is that, in the first case, the entire ternary expression is inferred as |
It's not even about let n: number;
const x: any = {}
n = x.y ? x.y : undefined // no error
const x: any = {}
if (x.y) {
n = x.y
} else {
n = undefined // error
} The consistent proposal would be that when a source expression of an assignment (or equivalent) is a ternary operator, we should check that both of its true/false operands are assignable to the target. But this just opens up more "consistency" problems: // m: any
let m = x.y ? x.y : undefined;
n = m; // This is still OK, good grief! There's not any principled place along the rabbit hole to stop going down further, plus "fixing" this would a substantial breaking change |
Yeah, I knew the This union behavior is generally sound; it just so happens that unioning |
This issue has been marked 'Working as Intended' and has seen no recent activity. It has been automatically closed for house-keeping purposes. |
@RyanCavanaugh, the |
I think the challenge is that a ternary isn't really a statement but an expression. An expression must have a single type; in this case that type happens to be In order to type check the above the way you suggest, the compiler would basically have to duplicate the statement and individually type check it for every combination of true/false for every single ternary in the statement. You'd have a combinatorial explosion. The current behavior is, I suspect, the best we're going to get. |
I see. That is a bummer, but thanks for looking into it! |
TypeScript Version: 3.4.1
Search Terms:
ternary statement vs if statement
ternary statement type widening
Code
Expected behavior:
It appears that returning a value from a ternary statement has a different behavior than and if-statement. The ternary statement type is widened and resolved before returning. This causes some unsafe type behavior. I would expect the two programs above to work the same and throw and error because the type definition of the function returns a number and yet we are definitely returning undefined.
Actual behavior:
The entire ternary statement returns as an "any" type.
Playground Link: playground link
Related Issues:
The text was updated successfully, but these errors were encountered: