-
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
Allow implicit return with explicit undefined
return type
#53092
Conversation
The TypeScript team hasn't accepted the linked issue #36288. If you can get it accepted, this PR will have a better chance of being reviewed. |
// Fine since are typed any. | ||
return; | ||
} | ||
|
||
function f9(): void { | ||
function f9(): any { | ||
// Fine since we are typed any and return undefined |
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.
(To match the comments, as otherwise these two are exactly same with f5 and f6.)
@typescript-bot test this |
Heya @jakebailey, I've started to run the diff-based top-repos suite on this PR at 3bee8eb. You can monitor the build here. Update: The results are in! |
Heya @jakebailey, I've started to run the tarball bundle task on this PR at 3bee8eb. You can monitor the build here. |
Heya @jakebailey, I've started to run the parallelized Definitely Typed test suite on this PR at 3bee8eb. You can monitor the build here. Update: The results are in! |
Heya @jakebailey, I've started to run the extended test suite on this PR at 3bee8eb. You can monitor the build here. |
Heya @jakebailey, I've started to run the perf test suite on this PR at 3bee8eb. You can monitor the build here. Update: The results are in! |
Heya @jakebailey, I've started to run the diff-based user code test suite on this PR at 3bee8eb. You can monitor the build here. Update: The results are in! |
Hey @jakebailey, I've packed this into an installable tgz. You can install it for testing by referencing it in your
and then running There is also a playground for this build and an npm module you can use via |
@jakebailey Here are the results of running the user test suite comparing Everything looks good! |
@jakebailey Here they are:
CompilerComparison Report - main..53092
System
Hosts
Scenarios
TSServerComparison Report - main..53092
System
Hosts
Scenarios
StartupComparison Report - main..53092
System
Hosts
Scenarios
Developer Information: |
Hey @jakebailey, the results of running the DT tests are ready. |
@jakebailey Here are the results of running the top-repos suite comparing Everything looks good! |
tests/baselines/reference/functionsMissingReturnStatementsAndExpressions.errors.txt
Outdated
Show resolved
Hide resolved
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.
Just add one more test case with a union type (EDIT: let me know if I missed another case in the same file).
There's this check below your code else if (type && strictNullChecks && !isTypeAssignableTo(undefinedType, type)) {
error(errorNode, Diagnostics.Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined);
} Do we need the assignability check anymore? - else if (type && strictNullChecks && !isTypeAssignableTo(undefinedType, type)) {
+ else if (type && strictNullChecks) {
error(errorNode, Diagnostics.Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined);
} |
…xpressions.errors.txt Co-authored-by: Daniel Rosenwasser <[email protected]>
// Okay; return type allows implicit return of undefined | ||
} | ||
|
||
function f23(): undefined | number { |
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 your last commit only included this baseline, as f23 doesn't appear to be anywhere else.
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 just tapped the commit button from GitHub, will add it with the another change for the feedback.
I'm not sure, isn't that for some different situation, as there's still a test for that: TypeScript/tests/cases/compiler/getterControlFlowStrictNull.ts Lines 3 to 11 in 79ef86f
TypeScript/tests/baselines/reference/getterControlFlowStrictNull.errors.txt Lines 6 to 17 in 79ef86f
|
You're saying that TypeScript no longer issues an error in that test if you remove that assignability check? I can't see why that would happen. |
|
src/compiler/diagnosticMessages.json
Outdated
@@ -1868,7 +1868,7 @@ | |||
"category": "Error", | |||
"code": 2354 | |||
}, | |||
"A function whose declared type is neither 'void' nor 'any' must return a value.": { | |||
"A function whose declared type is neither 'void' nor 'any' must return a value. 'undefined' is also allowed with --strictNullChecks.": { |
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 I'd rather us duplicate this message to have two (@DanielRosenwasser may be able to better write these):
A function whose declared type is neither 'void' nor 'any' must return a value.
A function whose declared type is not 'void', 'any', or 'undefined' must return a value.
Then, conditionally emit one based on the variable strictNullChecks
.
Then below in codefixes/returnValueCorrect.ts
, handle both.
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.
LGTM but deferring to @DanielRosenwasser for diagnostic wording.
} | ||
else if (type && strictNullChecks && !isTypeAssignableTo(undefinedType, type)) { | ||
else if (type && strictNullChecks) { |
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.
@jakebailey @DanielRosenwasser The removal of this assignability check has caused a regression. This example now errors when it shouldn't:
function fx2(x: boolean): unknown {
if (x) {
return "hello";
}
};
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 noticed the regression here: #53515 (comment)
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.
Funny. We were just talking about adding this check back again in #53490
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'll look into why it's not working as we expected.
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.
Oh, no, that PR was exactly to fix the issue you mentioned. So it should be fixed in main now.
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.
Checked, and it is fixed, yep.
Fixes #36288