aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/semantics.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicate commentEdwin Cheng2020-02-261-1/+0
|
* Add recursive support in original_rangeEdwin Cheng2020-02-261-14/+37
|
* Reduce visibilityAleksey Kladov2020-02-261-6/+66
|
* Refactor primary IDE APIAleksey Kladov2020-02-261-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.