Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Move PathResolution | Aleksey Kladov | 2020-03-05 | 1 | -2/+15 | |
| | ||||||
* | Remove old find refs infra | Aleksey Kladov | 2020-03-04 | 1 | -7/+1 | |
| | ||||||
* | More principled approach for gotodef for field shorhand | Aleksey Kladov | 2020-03-02 | 1 | -2/+5 | |
| | | | | | Callers can now decide for themselves if they should prefer field or local definition. By default, it's the local. | |||||
* | Rename ast::ImplBlock -> ast::ImplDef | Aleksey Kladov | 2020-02-29 | 1 | -1/+1 | |
| | ||||||
* | Handle tuple fields as well | Aleksey Kladov | 2020-02-29 | 1 | -0/+1 | |
| | ||||||
* | Simplify SourceBinder | Aleksey Kladov | 2020-02-29 | 1 | -61/+40 | |
| | ||||||
* | Reduce visibility | Aleksey Kladov | 2020-02-28 | 1 | -1/+1 | |
| | ||||||
* | Merge #3367 | bors[bot] | 2020-02-28 | 1 | -2/+6 | |
|\ | | | | | | | | | | | | | | | | | | | | | 3367: Fix highlighting of const patterns r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Fix highlighting of const patterns | Aleksey Kladov | 2020-02-28 | 1 | -2/+6 | |
| | | ||||||
* | | Simpilfy origin_range logic | Edwin Cheng | 2020-02-28 | 1 | -38/+27 | |
|/ | ||||||
* | Use text_range::extend_to | Edwin Cheng | 2020-02-27 | 1 | -10/+3 | |
| | ||||||
* | Skip trival token in original_range | Edwin Cheng | 2020-02-26 | 1 | -5/+7 | |
| | ||||||
* | Remove duplicate comment | Edwin Cheng | 2020-02-26 | 1 | -1/+0 | |
| | ||||||
* | Add recursive support in original_range | Edwin Cheng | 2020-02-26 | 1 | -14/+37 | |
| | ||||||
* | Reduce visibility | Aleksey Kladov | 2020-02-26 | 1 | -6/+66 | |
| | ||||||
* | Refactor primary IDE API | Aleksey Kladov | 2020-02-26 | 1 | -0/+335 | |
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. |