Skip to content
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

Closed
daveholladay opened this issue Sep 29, 2017 · 7 comments
Closed

noImplicitReturns does not take account of a never return #18841

daveholladay opened this issue Sep 29, 2017 · 7 comments
Labels
Duplicate An existing issue was already created

Comments

@daveholladay
Copy link

TypeScript Version: 2.5.2

Code

function foo(): never {
    throw new Error()
}

function bar(): number {
    if (Math.random() > 0.5)
        return 1;

    foo();
    // compiler should realise we can't get here.
}

Expected behavior:
Compiles without warnings when compiled with --noImplicitReturns

Actual behavior:
error TS7030: Not all code paths return a value.

@DanielRosenwasser DanielRosenwasser added In Discussion Not yet reached consensus Suggestion An idea for TypeScript labels Oct 1, 2017
@DanielRosenwasser
Copy link
Member

DanielRosenwasser commented Oct 1, 2017

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.

@weswigham
Copy link
Member

@rbuckton started looking into expanding flow control analysis to allow it to operate for throw expressions in #18798, so we're already looking into it.

@rbuckton
Copy link
Member

rbuckton commented Oct 2, 2017

@bterlson mentioned a similar issue, wanting to be able to use process.exit(), but I don't think never is the correct type for this case.

@mhegazy
Copy link
Contributor

mhegazy commented Oct 4, 2017

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.

@mhegazy mhegazy added Duplicate An existing issue was already created and removed In Discussion Not yet reached consensus Suggestion An idea for TypeScript labels Oct 4, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Oct 19, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Oct 19, 2017
@ethanresnick
Copy link
Contributor

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.)

@RyanCavanaugh
Copy link
Member

@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

@microsoft microsoft locked and limited conversation to collaborators Jul 3, 2018
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

7 participants