Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert code to text-size | Aleksey Kladov | 2020-04-25 | 1 | -4/+4 |
| | |||||
* | Add target file information to AssistAction | Timo Freiberg | 2020-04-21 | 1 | -1/+7 |
| | |||||
* | Generalise syntax rewriting infrastructure to allow removal of nodes | Aleksey Kladov | 2020-03-24 | 1 | -0/+6 |
| | |||||
* | Unfold groups with single assists into plain assists | Kirill Bulatov | 2020-03-05 | 1 | -2/+5 |
| | |||||
* | Refactor primary IDE API | Aleksey Kladov | 2020-02-26 | 1 | -29/+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. | ||||
* | Simplify Assists interface | Aleksey Kladov | 2020-02-09 | 1 | -45/+38 |
| | | | | | Instead of building a physical tree structure, just "tag" related assists with the same group | ||||
* | Slightly simpler API for groups | Aleksey Kladov | 2020-02-09 | 1 | -29/+63 |
| | |||||
* | Name assist handlers | Aleksey Kladov | 2020-02-07 | 1 | -0/+2 |
| | |||||
* | Cleanup | Aleksey Kladov | 2020-02-07 | 1 | -4/+3 |
| | |||||
* | Simplify | Aleksey Kladov | 2020-02-07 | 1 | -14/+2 |
| | |||||
* | Assists are not generic | Aleksey Kladov | 2020-02-06 | 1 | -8/+8 |
| | |||||
* | Start switching assists to a root database | Aleksey Kladov | 2020-02-06 | 1 | -4/+12 |
| | |||||
* | Initial auto import action implementation | Kirill Bulatov | 2020-01-26 | 1 | -2/+0 |
| | |||||
* | Make FromSource private | Aleksey Kladov | 2020-01-16 | 1 | -2/+6 |
| | |||||
* | Reduce visibility | Kirill Bulatov | 2020-01-15 | 1 | -1/+1 |
| | |||||
* | itertools::Either -> either::Either | Kirill Bulatov | 2020-01-15 | 1 | -1/+1 |
| | |||||
* | Apply the api design suggestions | Kirill Bulatov | 2020-01-15 | 1 | -11/+14 |
| | |||||
* | Another attempt to add multiple edits | Kirill Bulatov | 2020-01-15 | 1 | -6/+39 |
| | |||||
* | Cleanup assert | kjeremy | 2020-01-14 | 1 | -5/+1 |
| | |||||
* | unwrap | Jeremy Kolb | 2020-01-14 | 1 | -2/+2 |
| | |||||
* | Assert that first letter is capitalized | Jeremy Kolb | 2020-01-14 | 1 | -0/+6 |
| | |||||
* | Fill in type params in 'add missing impl members' assist | Florian Diebold | 2019-12-24 | 1 | -1/+1 |
| | |||||
* | Rename Source -> InFile | Aleksey Kladov | 2019-11-28 | 1 | -2/+2 |
| | |||||
* | Force passing Source when creating a SourceAnalyzer | Aleksey Kladov | 2019-11-15 | 1 | -1/+1 |
| | |||||
* | Reduce some duplication | Aleksey Kladov | 2019-11-15 | 1 | -2/+8 |
| | |||||
* | further simplify assists | Aleksey Kladov | 2019-10-27 | 1 | -20/+16 |
| | |||||
* | simplify AssistCtx API | Aleksey Kladov | 2019-10-27 | 1 | -7/+3 |
| | | | | | We never actually use ability to create multiple actions out of a single context | ||||
* | lightly document assist_ctx module | Aleksey Kladov | 2019-10-27 | 1 | -1/+1 |
| | |||||
* | use more consistent naming | Aleksey Kladov | 2019-10-27 | 1 | -1/+1 |
| | | | | | I think this is the first time I use global rename for rust-analyzer itself :-) | ||||
* | extract assist helper for getting a specific token | Aleksey Kladov | 2019-10-27 | 1 | -1/+5 |
| | |||||
* | add syntax-tree based indents | Aleksey Kladov | 2019-10-12 | 1 | -0/+1 |
| | |||||
* | Merge branch 'master' into feature/issue/1856 | Alexander Andreev | 2019-09-30 | 1 | -1/+5 |
|\ | | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs | ||||
| * | move field list to ast/edit.rs | Aleksey Kladov | 2019-09-30 | 1 | -3/+1 |
| | | |||||
| * | migrate add impl items to the new editing API | Aleksey Kladov | 2019-09-28 | 1 | -1/+7 |
| | | |||||
* | | Added test for check doc strings in crates. | Alexander Andreev | 2019-09-30 | 1 | -0/+2 |
|/ | | | | #1856 | ||||
* | Document AssistBuilder | Aleksey Kladov | 2019-07-29 | 1 | -4/+11 |
| | | | | closes #1603 | ||||
* | streamline API | Aleksey Kladov | 2019-07-21 | 1 | -2/+3 |
| | |||||
* | rename range -> text_range | Aleksey Kladov | 2019-07-20 | 1 | -1/+1 |
| | |||||
* | migrate ra_assists to the new AST | Aleksey Kladov | 2019-07-19 | 1 | -7/+7 |
| | |||||
* | make Parse fields private | Aleksey Kladov | 2019-07-12 | 1 | -2/+2 |
| | | | | this is in preparation for the new rowan API | ||||
* | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 1 | -5/+5 |
| | | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway | ||||
* | fix typos in mbe tests | Aleksey Kladov | 2019-05-28 | 1 | -1/+1 |
| | |||||
* | Merge #1194 | bors[bot] | 2019-04-22 | 1 | -0/+4 |
|\ | | | | | | | | | | | | | | | | | 1194: Pr 1190 r=matklad a=matklad Co-authored-by: Andrea Pretto <[email protected]> Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | auto_import: use TextEditBuilder instead of AssistBuilder to make it more ↵ | Andrea Pretto | 2019-04-21 | 1 | -0/+4 |
| | | | | | | | | reusable | ||||
* | | use structured editing API for fill struct assist | Aleksey Kladov | 2019-04-21 | 1 | -0/+4 |
|/ | |||||
* | intelligently add parens when inlining local varaibles | gfreezy | 2019-04-01 | 1 | -0/+4 |
| | |||||
* | switch to new rowan | Aleksey Kladov | 2019-04-01 | 1 | -6/+6 |
| | |||||
* | Assign IDs to assists | Aleksey Kladov | 2019-02-24 | 1 | -2/+3 |
| | |||||
* | ra_assists: assist "providers" can produce multiple assists | Andrea Pretto | 2019-02-11 | 1 | -14/+27 |
| | |||||
* | Merge #766 | bors[bot] | 2019-02-09 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | | | | | 766: Formatting code into ra_fmt r=matklad a=eulerdisk As discussed https://github.com/rust-analyzer/rust-analyzer/pull/762#discussion_r254905885 I did only move the code without other improvements. Co-authored-by: Andrea Pretto <[email protected]> |