Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |