aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/add_missing_impl_members.rs
Commit message (Collapse)AuthorAgeFilesLines
* SimplifyAleksey Kladov2020-03-131-2/+2
|
* Rename ast::ImplBlock -> ast::ImplDefAleksey Kladov2020-02-291-3/+3
|
* Refactor primary IDE APIAleksey Kladov2020-02-261-18/+11
| | | | | | | | | | This introduces the new type -- Semantics. Semantics maps SyntaxNodes to various semantic info, such as type, name resolution or macro expansions. To do so, Semantics maintains a HashMap which maps every node it saw to the file from which the node originated. This is enough to get all the necessary hir bits just from syntax.
* Formatted changes.Kevin DeLorey2020-02-111-2/+2
|
* Fixed warning generated after refactoring.Kevin DeLorey2020-02-111-1/+1
|
* Updated the `add_missing_impl_members` to use the shared utility.Kevin DeLorey2020-02-111-33/+14
|
* Name assist handlersAleksey Kladov2020-02-071-0/+608