aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/display.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move completion label functions to displayVille Penttinen2019-04-091-1/+27
|
* Add FunctionSignature::from_hirVille Penttinen2019-04-091-0/+7
|
* Normalize line-endings in display.rsVille Penttinen2019-04-091-112/+112
| | | | This changes from CRLF to LF
* Move FunctionSignature creation to displayVille Penttinen2019-04-091-0/+49
|
* Move FunctionSignature to display, remove write_joinedVille Penttinen2019-04-091-23/+35
| | | | | write_joined is replaced with `join_to_string::join` which provides the necessary functionality.
* Refactor CallInfo function signatures to new FunctionSignature typeVille Penttinen2019-04-091-0/+51
This is used by CallInfo to create a pretty printed function signature that can be used with completions and other places as well.