aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/inline_local_variable.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move AssistKind into AssistIdkjeremy2020-07-021-2/+1
|
* Categorize assistsJeremy Kolb2020-07-021-8/+15
|
* Reuse Semantics instancesLaurențiu Nicola2020-07-011-1/+1
|
* Remove db from AssistsContextLaurențiu Nicola2020-07-011-1/+1
|
* Snippetify introduce/inline varAleksey Kladov2020-05-201-24/+23
|
* Switch to new magic marksAleksey Kladov2020-05-201-8/+8
|
* Refactor assists API to be more convenient for adding new assistsAleksey Kladov2020-05-071-17/+14
| | | | It now duplicates completion API in its shape.
* Move target to AssistLabelAleksey Kladov2020-05-061-0/+2
| | | | | Target is used for assists sorting, so we need it before we compute the action.
* Merge assits::test_helpers and testsAleksey Kladov2020-05-061-1/+1
|
* Introduce EffectExprAleksey Kladov2020-05-021-0/+1
|
* Convert code to text-sizeAleksey Kladov2020-04-251-1/+1
|
* Simpler acessors for keywordsAleksey Kladov2020-04-091-1/+1
|
* Be consistent about token accesorsAleksey Kladov2020-04-091-1/+1
|
* Remove old find refs infraAleksey Kladov2020-03-041-11/+18
|
* Highlight assist testsAleksey Kladov2020-03-031-46/+46
|
* Fix applicability of inline localAleksey Kladov2020-03-031-4/+26
|
* Refactor primary IDE APIAleksey Kladov2020-02-261-2/+1
| | | | | | | | | | 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.
* Name assist handlersAleksey Kladov2020-02-071-0/+662