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

Wishlist: argument type inference for private methods and local functions #18912

Closed
vivainio opened this issue Oct 3, 2017 · 2 comments
Closed
Labels
Duplicate An existing issue was already created

Comments

@vivainio
Copy link

vivainio commented Oct 3, 2017

TypeScript Version: 2.5

It should be possible to infer types of non-exported functions and private methods, as the types can be locally established by just looking at the file under compilation.

Code

function inferred(x):
  return x+x

// since we call the function with a number, we should be able to infer the type of x as number instead of "any"

const foo = inferred(2)

// complation should fail as no type can be inferred that supports both calls to 'inferred'.

const bar = inferred( { baz:1} )
@mhegazy
Copy link
Contributor

mhegazy commented Oct 3, 2017

Duplicate of #15114, #14078, #15016, #17428, #15196

@mhegazy mhegazy added the Duplicate An existing issue was already created label Oct 3, 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
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

2 participants