aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/nameres
Commit message (Collapse)AuthorAgeFilesLines
* Move scope tests to hir_defAleksey Kladov2019-11-151-1/+2
|
* Add convenience method for testingAleksey Kladov2019-11-153-5/+5
|
* Merge #2205bors[bot]2019-11-112-3/+29
|\ | | | | | | | | | | | | | | | | | | | | | | | | 2205: Implement bulitin line! macro r=matklad a=edwin0cheng This PR implements bulitin macro `line!` and add basic infra-structure for other bulitin macros: 1. Extend `MacroDefId` to support builtin macros 2. Add a `quote!` macro for simple quasi quoting. Note that for support others builtin macros, eager macro expansion have to be supported first, this PR not try to handle it. :) Co-authored-by: Edwin Cheng <[email protected]>
| * Add MacroDefKindEdwin Cheng2019-11-111-8/+7
| |
| * Add basic bultin macro infrastructureEdwin Cheng2019-11-112-4/+31
| |
* | Overwrite the prelude with one defined in a later dependencyMatthias Einwag2019-11-101-9/+6
| | | | | | | | | | | | | | This removes the special casing for the "core" prelude. Whenever a later dependency also exports a prelude, it will replace the formerly imported prelude. The utilized prelude then depends purely on import order.
* | Add tests for resolving types in core and std preludesMatthias Einwag2019-11-101-0/+31
| |
* | 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
|/
* Reduce visibilityAleksey Kladov2019-11-081-9/+9
|
* Extract path resolution submoduleAleksey Kladov2019-11-082-2/+263
|
* SimplifyAleksey Kladov2019-11-081-1/+5
| | | | | There's only one call-site for the function, so it seems fine to inline
* Reduce visibilityAleksey Kladov2019-11-081-23/+23
|
* Move Namespace enum closer to usageAleksey Kladov2019-11-041-8/+0
|
* Reduce visibilityAleksey Kladov2019-11-041-4/+8
|
* Reexport relative_path from ra_dbAleksey Kladov2019-11-031-2/+1
|
* Restore crate_def_map marksAleksey Kladov2019-11-036-22/+21
|
* move crate_def_map tests to hir_defAleksey Kladov2019-11-036-0/+2177
|
* 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-032-0/+927
|
* move mod_resolution to hir_defAleksey Kladov2019-10-311-0/+77
|
* move hygiene to hir_expandAleksey Kladov2019-10-301-4/+2
|
* push name down to hir_expandAleksey Kladov2019-10-301-7/+8
|
* push either to hir_expandAleksey Kladov2019-10-301-7/+4
|
* refactor $crate handlingAleksey Kladov2019-10-301-17/+14
| | | | | Introduce proper hygiene module, which should grow quite a bit eventually.
* fix compilationAleksey Kladov2019-10-301-2/+2
|
* move raw_items to hir_defAleksey Kladov2019-10-301-0/+407