-
Notifications
You must be signed in to change notification settings - Fork 279
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
Feature Request: Determine Inferred Types Operation #304
Comments
If I'm not mistaken, racer doesn't infer types except in the simplest cases (types evaluated from macros or pattern matching don't work, for example), so that needs to be improved in order to make this happen. |
Is there a way to ask the rust compiler or one of its component libraries to do the type inference for us, that could be leveraged by racer? |
It is the goal to eventually use rustc for type inference, and the rust On Wed, Aug 26, 2015 at 5:21 AM, Caleb Jones [email protected]
|
any update on this? |
Feature Request: Rust operation to infer and display the type of a variable or expression. Example
let foo = "blah";
Run this racer operation with source location at
foo
, or"blah"
, Racer displays the name of the inferred type:&str
The text was updated successfully, but these errors were encountered: