aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis/src/descriptors
Commit message (Collapse)AuthorAgeFilesLines
* Add ModuleScope as a queryAleksey Kladov2018-10-303-1/+149
| | | | | | | This is a first step towards queryifing completion and resolve. Some code currently duplicates ra_editor: the plan is to move all completion from ra_editor, but it'll take more than one commit.
* switch to TextRange::subrangeAleksey Kladov2018-10-301-2/+1
|
* Move input to top-levelAleksey Kladov2018-10-252-3/+4
|
* Store all the data in the Salsa DatabaseAleksey Kladov2018-10-252-17/+15
|
* Introduce ModuleIdAleksey Kladov2018-10-233-0/+385
Previously, module was synonym with a file, and so a module could have had several parents. This commit introduces a separate module concept, such that each module has only one parent, but a single file can correspond to different modules.