rust-analyzer/crates/hir/src
bors 9b3387454d Auto merge of #14781 - lowr:patch/macro-subns-and-prelude, r=Veykril
Introduce macro sub-namespaces and `macro_use` prelude

This PR implements two mechanisms needed for correct macro name resolution: macro sub-namespace and `macro_use` prelude.

- [macro sub-namespaces][subns-ref]

  Macros have two sub-namespaces: one for function-like macro and the other for those in attributes (including custom derive macros). When we're resolving a macro name for function-like macro, we should ignore non-function-like macros, and vice versa.

  This helps resolve single-segment macro names because we can (and should, as rustc does) fallback to names in preludes when the name in the current module scope is in different sub-namespace.

- [`macro_use` prelude][prelude-ref]

  `#[macro_use]`'d extern crate declarations (including the standard library) bring their macros into scope, but they should not be prioritized over local macros (those defined in place and those explicitly imported).

  We have been bringing them into legacy (textual) macro scope, which has the highest precedence in name resolution. This PR introduces the `macro_use` prelude in crate-level `DefMap`s, whose precedence is lower than local macros but higher than the standard library prelude.

The first 3 commits are drive-by fixes/refactors.

Fixes #8828 (prelude)
Fixes #12505 (prelude)
Fixes #12734 (prelude)
Fixes #13683 (prelude)
Fixes #13821 (prelude)
Fixes #13974 (prelude)
Fixes #14254 (namespace)

[subns-ref]: https://doc.rust-lang.org/reference/names/namespaces.html#sub-namespaces
[prelude-ref]: https://doc.rust-lang.org/reference/names/preludes.html#macro_use-prelude
2023-05-11 14:26:59 +00:00
..
semantics Revert "Handle dev-dependency cycles" 2023-04-25 14:29:26 +02:00
attrs.rs Consider macro sub-namespace during name resolution 2023-05-11 21:13:12 +09:00
db.rs Actually bring back LRU limit for macro_expand query 2023-04-16 23:12:25 +02:00
diagnostics.rs Report syntax errors from item level macro expansions 2023-04-16 17:22:06 +02:00
display.rs Remove unnecessary Names from FunctionData::params 2023-04-06 20:14:51 +02:00
from_id.rs hir_def::expr -> hir_def::hir, hir_def::type_ref -> hir_def::hir::type_ref 2023-04-06 19:36:25 +02:00
has_source.rs Partially support "overloaded deref" MIR lowering 2023-03-06 21:09:09 +03:30
lib.rs Render places in capture inlay hints 2023-05-08 09:50:58 +02:00
semantics.rs Consider macro sub-namespace during name resolution 2023-05-11 21:13:12 +09:00
source_analyzer.rs Consider macro sub-namespace during name resolution 2023-05-11 21:13:12 +09:00
symbols.rs Refactor symbol index 2023-05-02 12:11:42 +02:00