-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
noImplicitReturns does not take account of a never return #18841
Comments
If we did this, every single expression statement with a function call would need to tie into the control flow graph which would likely be prohibitively expensive, but we should discuss it anyway. |
@bterlson mentioned a similar issue, wanting to be able to use |
This is a duplicate of #10470. The main issue really here is how these two features are implemented. implicit return checks happen earlier in the binder. where as control flow analysis happens later on when we are checking. merging the two is not a trivial task. |
Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed. |
Is there a remaining open issue to track this? If not, should there be? I realize it's hard to implement, but maybe it's worth keeping open as a request? (#10470 has also been closed.) |
@ethanresnick We'd prefer that open issues be actionable rather than serve as an infinite-scroll TODO list. Issues don't need to be open for us to be able to see activity on them |
TypeScript Version: 2.5.2
Code
Expected behavior:
Compiles without warnings when compiled with --noImplicitReturns
Actual behavior:
error TS7030: Not all code paths return a value.
The text was updated successfully, but these errors were encountered: