aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/resolver.rs
Commit message (Collapse)AuthorAgeFilesLines
* clippy::redudant_borrowMaan20032021-06-131-5/+5
|
* Consider trait to be in scope for trait-implLukas Wirth2021-05-251-13/+25
|
* Intern `GenericParams`Jonas Schievink2021-04-051-1/+2
| | | | | Also share the same instance between `ItemTree` and `generic_params` query.
* resolver: manually traverse nested block scopesJonas Schievink2021-03-221-4/+14
|
* remove more redundant clones (clippy::redundant_clone())Matthias Krüger2021-03-211-1/+1
|
* Track labels in scopesLukas Wirth2021-03-211-1/+5
|
* Delete `ContainerId`Jonas Schievink2021-03-091-13/+4
|
* Stop using `ContainerId` in `AssocContainerId`Jonas Schievink2021-03-091-1/+1
|
* Check ancestor maps when computing traits in scopeJonas Schievink2021-03-091-0/+10
|
* Rename a few `crate_def_map`s to `def_map`Jonas Schievink2021-03-061-12/+12
| | | | These could all be block `DefMap`s instead of crate-level `DefMap`s
* Wrap `BuiltinType` in code modelJonas Schievink2021-02-111-0/+1
|
* Remove unneeded returnJonas Schievink2021-02-091-2/+2
|
* Remove `pub`Jonas Schievink2021-02-091-2/+2
|
* Use `block_def_map` in `Resolver`Jonas Schievink2021-02-091-118/+97
| | | | | | | This required a few changes to not bail out immediately if a `ModuleScope` doesn't resolve a path. The `LocalItemsScope` hack is now removed.
* Make `ModPath`'s representation privateJonas Schievink2021-02-041-6/+6
|
* Create all `ModuleId`s through a `DefMap` methodJonas Schievink2021-01-251-1/+1
| | | | | `ModuleId` needs to be able to represent blocks, and only the associated `DefMap` will know how to construct that `ModuleId`
* Obtain `ModuleId`'s `DefMap` through a methodJonas Schievink2021-01-221-3/+3
|
* Fix broken link in intra-docDaiki Ihara2021-01-221-0/+13
|
* DefMap: hide remaining crate-visible fieldsJonas Schievink2021-01-201-5/+5
|
* Show const params in completionsLukas Wirth2021-01-191-9/+16
|
* Rename `CrateDefMap` to `DefMap`Jonas Schievink2021-01-181-8/+4
|
* Handle self/super/crate in PathSegment as NameRefLukas Wirth2021-01-151-1/+1
|
* Merge #7110bors[bot]2021-01-141-2/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7110: Deduplicate macros when offering completion r=matklad a=AdnoC Closes https://github.com/rust-analyzer/rust-analyzer/issues/7081 When iterating over the names within the `hir_def::resolver::Scope` for a module, track what macros are in the `hir_def::item_scope::ItemScope::legacy_macros` collection for the module. When iterating over names from the prelude, do not proccess the name if it had been in the `legacy_macros` collection. This is implemented with a `FxHashSet` in the `Scope::process_names` function that is populated when iterating over `legacy_macros` and checked when iterating over the prelude. Alternative implementation could instead query the `legacy_macros` `FxHashMap` directly when processing names in the prelude. Also, I'd like to add a test for this, but I'm not sure where it could be added. Co-authored-by: AdnoC <[email protected]>
| * we can have one less call to name.clone()AdnoC2020-12-311-2/+3
| |
| * deduplicate macro completions from legacy macros and preludeAdnoC2020-12-311-2/+7
| |
* | Fixed typos in code commentsVincent Esche2021-01-091-1/+1
| |
* | Add ConstParams to the HIRLukas Wirth2021-01-011-5/+12
|/
* Rename ra_hir_def -> hir_defAleksey Kladov2020-08-131-0/+713