aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/nameres/collector.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* | Resolve core typesMatthias Einwag2019-11-091-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for completion and goto definition of types defined within the "core" crate. The core crate is added as a dependency to each crate in the project. The core crate exported it's own prelude. This caused now all crates to inherit the core crates prelude instead of the std crates. In order to avoid the problem the prelude resolution has been changed to overwrite an already resolved prelude if this was set to a crate named core - in order to pick a better prelude like std. Fixes #2199
* | Unfork struct and union idsAleksey Kladov2019-11-091-4/+7
|/
* Extract path resolution submoduleAleksey Kladov2019-11-081-2/+2
|
* SimplifyAleksey Kladov2019-11-081-1/+5
| | | | | There's only one call-site for the function, so it seems fine to inline
* Restore crate_def_map marksAleksey Kladov2019-11-031-8/+7
|
* Introduce ra_db::fixture fixture moduleAleksey Kladov2019-11-031-10/+10
| | | | The goal here is to share more testing infrastructure between crates.
* Move CrateDefMap to hir_defAleksey Kladov2019-11-031-0/+845