Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Follow matklad suggestions | Veetaha | 2020-06-28 | 1 | -1/+10 |
| | | | | | | - Move vis_offset() to utils.rs - Shorten explicit ra_syntax::ast -> ast - Undo refactoring exhaustive pattern to non-exhaustive | ||||
* | Centralize fixture parsing for assists | Aleksey Kladov | 2020-06-23 | 1 | -2/+1 |
| | |||||
* | Expose `find_insert_use_container` | Jonas Schievink | 2020-06-13 | 1 | -1/+1 |
| | |||||
* | Fix Some|None order in fill_match_arms | Aleksey Kladov | 2020-05-20 | 1 | -7/+28 |
| | |||||
* | Use snippets in add_missing_members | Aleksey Kladov | 2020-05-20 | 1 | -9/+22 |
| | |||||
* | Moderate cleanup of add_function | Aleksey Kladov | 2020-05-20 | 1 | -1/+7 |
| | |||||
* | Use snippets in add function | Aleksey Kladov | 2020-05-20 | 1 | -2/+22 |
| | |||||
* | add if let and while let postfix for Option and Result | Benjamin Coenen | 2020-05-10 | 1 | -2/+2 |
| | | | | Signed-off-by: Benjamin Coenen <[email protected]> | ||||
* | Rename ImplItem to AssocItem | Edwin Cheng | 2020-05-05 | 1 | -5/+5 |
| | |||||
* | Support auto-import in macro | Edwin Cheng | 2020-05-02 | 1 | -1/+1 |
| | |||||
* | More principled approach for finding From trait | Aleksey Kladov | 2020-04-29 | 1 | -1/+59 |
| | |||||
* | Use specific pattern when translating if-let-else to match | Aleksey Kladov | 2020-04-29 | 1 | -10/+47 |
| | | | | | | We *probably* should actually use the same machinery here, as we do for fill match arms, but just special-casing options and results seems to be a good first step. | ||||
* | Move shared assist code to utils | Aleksey Kladov | 2020-04-29 | 1 | -1/+14 |
| | |||||
* | Rename ast::ImplBlock -> ast::ImplDef | Aleksey Kladov | 2020-02-29 | 1 | -5/+5 |
| | |||||
* | Move insert_use util to utils | Aleksey Kladov | 2020-02-28 | 1 | -0/+3 |
| | |||||
* | Refactor primary IDE API | Aleksey Kladov | 2020-02-26 | 1 | -12/+12 |
| | | | | | | | | | | 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. | ||||
* | Fixing minor suggestions and added module level documentation. | Kevin DeLorey | 2020-02-11 | 1 | -2/+1 |
| | |||||
* | Removed doc comments entirely from the changes. | Kevin DeLorey | 2020-02-11 | 1 | -2/+0 |
| | |||||
* | Formatted changes. | Kevin DeLorey | 2020-02-11 | 1 | -5/+5 |
| | |||||
* | Updated the `add_missing_impl_members` to use the shared utility. | Kevin DeLorey | 2020-02-11 | 1 | -1/+1 |
| | |||||
* | Adjusted the hashset buckets to lump functions/consts together as their ↵ | Kevin DeLorey | 2020-02-11 | 1 | -9/+10 |
| | | | | names must be unique. | ||||
* | Added a utility function that can be used to determine the missing impl items. | Kevin DeLorey | 2020-02-09 | 1 | -2/+75 |
| | |||||
* | Introduce assists utils | Aleksey Kladov | 2020-02-07 | 1 | -0/+27 |