mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Support local_inner_macros
This commit is contained in:
parent
a5f2b16366
commit
e4267967a8
10 changed files with 96 additions and 18 deletions
|
@ -151,7 +151,7 @@ impl SourceToDefCtx<'_, '_> {
|
||||||
let krate = self.file_to_def(file_id)?.krate;
|
let krate = self.file_to_def(file_id)?.krate;
|
||||||
let file_ast_id = self.db.ast_id_map(src.file_id).ast_id(&src.value);
|
let file_ast_id = self.db.ast_id_map(src.file_id).ast_id(&src.value);
|
||||||
let ast_id = Some(AstId::new(src.file_id, file_ast_id));
|
let ast_id = Some(AstId::new(src.file_id, file_ast_id));
|
||||||
Some(MacroDefId { krate: Some(krate), ast_id, kind })
|
Some(MacroDefId { krate: Some(krate), ast_id, kind, local_inner: false })
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn find_container(&mut self, src: InFile<&SyntaxNode>) -> Option<ChildContainer> {
|
pub(super) fn find_container(&mut self, src: InFile<&SyntaxNode>) -> Option<ChildContainer> {
|
||||||
|
|
|
@ -430,6 +430,7 @@ impl ExprCollector<'_> {
|
||||||
krate: Some(self.expander.module.krate),
|
krate: Some(self.expander.module.krate),
|
||||||
ast_id: Some(self.expander.ast_id(&e)),
|
ast_id: Some(self.expander.ast_id(&e)),
|
||||||
kind: MacroDefKind::Declarative,
|
kind: MacroDefKind::Declarative,
|
||||||
|
local_inner: false,
|
||||||
};
|
};
|
||||||
self.body.item_scope.define_legacy_macro(name, mac);
|
self.body.item_scope.define_legacy_macro(name, mac);
|
||||||
|
|
||||||
|
|
|
@ -204,6 +204,7 @@ impl DefCollector<'_> {
|
||||||
ast_id: None,
|
ast_id: None,
|
||||||
krate: Some(krate),
|
krate: Some(krate),
|
||||||
kind: MacroDefKind::CustomDerive(expander),
|
kind: MacroDefKind::CustomDerive(expander),
|
||||||
|
local_inner: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
self.define_proc_macro(name.clone(), macro_id);
|
self.define_proc_macro(name.clone(), macro_id);
|
||||||
|
@ -941,6 +942,7 @@ impl ModCollector<'_, '_> {
|
||||||
ast_id: Some(ast_id.ast_id),
|
ast_id: Some(ast_id.ast_id),
|
||||||
krate: Some(self.def_collector.def_map.krate),
|
krate: Some(self.def_collector.def_map.krate),
|
||||||
kind: MacroDefKind::Declarative,
|
kind: MacroDefKind::Declarative,
|
||||||
|
local_inner: mac.local_inner,
|
||||||
};
|
};
|
||||||
self.def_collector.define_macro(self.module_id, name.clone(), macro_id, mac.export);
|
self.def_collector.define_macro(self.module_id, name.clone(), macro_id, mac.export);
|
||||||
}
|
}
|
||||||
|
|
|
@ -188,6 +188,7 @@ pub(super) struct MacroData {
|
||||||
pub(super) path: ModPath,
|
pub(super) path: ModPath,
|
||||||
pub(super) name: Option<Name>,
|
pub(super) name: Option<Name>,
|
||||||
pub(super) export: bool,
|
pub(super) export: bool,
|
||||||
|
pub(super) local_inner: bool,
|
||||||
pub(super) builtin: bool,
|
pub(super) builtin: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -401,14 +402,28 @@ impl RawItemsCollector {
|
||||||
|
|
||||||
let name = m.name().map(|it| it.as_name());
|
let name = m.name().map(|it| it.as_name());
|
||||||
let ast_id = self.source_ast_id_map.ast_id(&m);
|
let ast_id = self.source_ast_id_map.ast_id(&m);
|
||||||
// FIXME: cfg_attr
|
|
||||||
let export = m.attrs().filter_map(|x| x.simple_name()).any(|name| name == "macro_export");
|
|
||||||
|
|
||||||
// FIXME: cfg_attr
|
// FIXME: cfg_attr
|
||||||
let builtin =
|
let export = attrs.by_key("macro_export").exists();
|
||||||
m.attrs().filter_map(|x| x.simple_name()).any(|name| name == "rustc_builtin_macro");
|
let local_inner =
|
||||||
|
attrs.by_key("macro_export").tt_values().map(|it| &it.token_trees).flatten().any(
|
||||||
|
|it| match it {
|
||||||
|
tt::TokenTree::Leaf(tt::Leaf::Ident(ident)) => {
|
||||||
|
ident.text.contains("local_inner_macros")
|
||||||
|
}
|
||||||
|
_ => false,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
let builtin = attrs.by_key("rustc_builtin_macro").exists();
|
||||||
|
|
||||||
let m = self.raw_items.macros.alloc(MacroData { ast_id, path, name, export, builtin });
|
let m = self.raw_items.macros.alloc(MacroData {
|
||||||
|
ast_id,
|
||||||
|
path,
|
||||||
|
name,
|
||||||
|
export,
|
||||||
|
local_inner,
|
||||||
|
builtin,
|
||||||
|
});
|
||||||
self.push_item(current_module, attrs, RawItemKind::Macro(m));
|
self.push_item(current_module, attrs, RawItemKind::Macro(m));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,10 @@ use hir_expand::{
|
||||||
hygiene::Hygiene,
|
hygiene::Hygiene,
|
||||||
name::{name, AsName},
|
name::{name, AsName},
|
||||||
};
|
};
|
||||||
use ra_syntax::ast::{self, AstNode, TypeAscriptionOwner, TypeBoundsOwner};
|
use ra_syntax::{
|
||||||
|
ast::{self, AstNode, TypeAscriptionOwner, TypeBoundsOwner},
|
||||||
|
T,
|
||||||
|
};
|
||||||
|
|
||||||
use super::AssociatedTypeBinding;
|
use super::AssociatedTypeBinding;
|
||||||
use crate::{
|
use crate::{
|
||||||
|
@ -113,6 +116,20 @@ pub(super) fn lower_path(mut path: ast::Path, hygiene: &Hygiene) -> Option<Path>
|
||||||
}
|
}
|
||||||
segments.reverse();
|
segments.reverse();
|
||||||
generic_args.reverse();
|
generic_args.reverse();
|
||||||
|
|
||||||
|
// handle local_inner_macros :
|
||||||
|
// Basically, even in rustc it is quite hacky:
|
||||||
|
// https://github.com/rust-lang/rust/blob/614f273e9388ddd7804d5cbc80b8865068a3744e/src/librustc_resolve/macros.rs#L456
|
||||||
|
// We follow what it did anyway :)
|
||||||
|
if segments.len() == 1 && kind == PathKind::Plain {
|
||||||
|
let next = path.syntax().last_token().and_then(|it| it.next_token());
|
||||||
|
if next.map_or(false, |it| it.kind() == T![!]) {
|
||||||
|
if let Some(crate_id) = hygiene.local_inner_macros() {
|
||||||
|
kind = PathKind::DollarCrate(crate_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let mod_path = ModPath { kind, segments };
|
let mod_path = ModPath { kind, segments };
|
||||||
return Some(Path { type_anchor, mod_path, generic_args });
|
return Some(Path { type_anchor, mod_path, generic_args });
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ macro_rules! register_builtin {
|
||||||
_ => return None,
|
_ => return None,
|
||||||
};
|
};
|
||||||
|
|
||||||
Some(MacroDefId { krate: None, ast_id: None, kind: MacroDefKind::BuiltInDerive(kind) })
|
Some(MacroDefId { krate: None, ast_id: None, kind: MacroDefKind::BuiltInDerive(kind),local_inner:false })
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,11 +73,13 @@ pub fn find_builtin_macro(
|
||||||
krate: Some(krate),
|
krate: Some(krate),
|
||||||
ast_id: Some(ast_id),
|
ast_id: Some(ast_id),
|
||||||
kind: MacroDefKind::BuiltIn(kind),
|
kind: MacroDefKind::BuiltIn(kind),
|
||||||
|
local_inner: false,
|
||||||
}),
|
}),
|
||||||
Either::Right(kind) => Some(MacroDefId {
|
Either::Right(kind) => Some(MacroDefId {
|
||||||
krate: Some(krate),
|
krate: Some(krate),
|
||||||
ast_id: Some(ast_id),
|
ast_id: Some(ast_id),
|
||||||
kind: MacroDefKind::BuiltInEager(kind),
|
kind: MacroDefKind::BuiltInEager(kind),
|
||||||
|
local_inner: false,
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -406,6 +408,7 @@ mod tests {
|
||||||
krate: Some(CrateId(0)),
|
krate: Some(CrateId(0)),
|
||||||
ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(¯o_calls[0]))),
|
ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(¯o_calls[0]))),
|
||||||
kind: MacroDefKind::BuiltIn(expander),
|
kind: MacroDefKind::BuiltIn(expander),
|
||||||
|
local_inner: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
let loc = MacroCallLoc {
|
let loc = MacroCallLoc {
|
||||||
|
@ -425,6 +428,7 @@ mod tests {
|
||||||
krate: Some(CrateId(0)),
|
krate: Some(CrateId(0)),
|
||||||
ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(¯o_calls[0]))),
|
ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(¯o_calls[0]))),
|
||||||
kind: MacroDefKind::BuiltInEager(expander),
|
kind: MacroDefKind::BuiltInEager(expander),
|
||||||
|
local_inner: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
let args = macro_calls[1].token_tree().unwrap();
|
let args = macro_calls[1].token_tree().unwrap();
|
||||||
|
|
|
@ -16,31 +16,34 @@ use crate::{
|
||||||
pub struct Hygiene {
|
pub struct Hygiene {
|
||||||
// This is what `$crate` expands to
|
// This is what `$crate` expands to
|
||||||
def_crate: Option<CrateId>,
|
def_crate: Option<CrateId>,
|
||||||
|
|
||||||
|
// Indiciate this is a local inner macro
|
||||||
|
local_inner: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Hygiene {
|
impl Hygiene {
|
||||||
pub fn new(db: &dyn AstDatabase, file_id: HirFileId) -> Hygiene {
|
pub fn new(db: &dyn AstDatabase, file_id: HirFileId) -> Hygiene {
|
||||||
let def_crate = match file_id.0 {
|
let (def_crate, local_inner) = match file_id.0 {
|
||||||
HirFileIdRepr::FileId(_) => None,
|
HirFileIdRepr::FileId(_) => (None, false),
|
||||||
HirFileIdRepr::MacroFile(macro_file) => match macro_file.macro_call_id {
|
HirFileIdRepr::MacroFile(macro_file) => match macro_file.macro_call_id {
|
||||||
MacroCallId::LazyMacro(id) => {
|
MacroCallId::LazyMacro(id) => {
|
||||||
let loc = db.lookup_intern_macro(id);
|
let loc = db.lookup_intern_macro(id);
|
||||||
match loc.def.kind {
|
match loc.def.kind {
|
||||||
MacroDefKind::Declarative => loc.def.krate,
|
MacroDefKind::Declarative => (loc.def.krate, loc.def.local_inner),
|
||||||
MacroDefKind::BuiltIn(_) => None,
|
MacroDefKind::BuiltIn(_) => (None, false),
|
||||||
MacroDefKind::BuiltInDerive(_) => None,
|
MacroDefKind::BuiltInDerive(_) => (None, false),
|
||||||
MacroDefKind::BuiltInEager(_) => None,
|
MacroDefKind::BuiltInEager(_) => (None, false),
|
||||||
MacroDefKind::CustomDerive(_) => None,
|
MacroDefKind::CustomDerive(_) => (None, false),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MacroCallId::EagerMacro(_id) => None,
|
MacroCallId::EagerMacro(_id) => (None, false),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
Hygiene { def_crate }
|
Hygiene { def_crate, local_inner }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new_unhygienic() -> Hygiene {
|
pub fn new_unhygienic() -> Hygiene {
|
||||||
Hygiene { def_crate: None }
|
Hygiene { def_crate: None, local_inner: false }
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: this should just return name
|
// FIXME: this should just return name
|
||||||
|
@ -52,4 +55,12 @@ impl Hygiene {
|
||||||
}
|
}
|
||||||
Either::Left(name_ref.as_name())
|
Either::Left(name_ref.as_name())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn local_inner_macros(&self) -> Option<CrateId> {
|
||||||
|
if self.local_inner {
|
||||||
|
self.def_crate
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -204,6 +204,8 @@ pub struct MacroDefId {
|
||||||
pub krate: Option<CrateId>,
|
pub krate: Option<CrateId>,
|
||||||
pub ast_id: Option<AstId<ast::MacroCall>>,
|
pub ast_id: Option<AstId<ast::MacroCall>>,
|
||||||
pub kind: MacroDefKind,
|
pub kind: MacroDefKind,
|
||||||
|
|
||||||
|
pub local_inner: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl MacroDefId {
|
impl MacroDefId {
|
||||||
|
|
|
@ -387,6 +387,32 @@ fn main() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn infer_local_inner_macros() {
|
||||||
|
let (db, pos) = TestDB::with_position(
|
||||||
|
r#"
|
||||||
|
//- /main.rs crate:main deps:foo
|
||||||
|
fn test() {
|
||||||
|
let x = foo::foo!(1);
|
||||||
|
x<|>;
|
||||||
|
}
|
||||||
|
|
||||||
|
//- /lib.rs crate:foo
|
||||||
|
#[macro_export(local_inner_macros)]
|
||||||
|
macro_rules! foo {
|
||||||
|
(1) => { bar!() };
|
||||||
|
}
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! bar {
|
||||||
|
() => { 42 }
|
||||||
|
}
|
||||||
|
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
assert_eq!("i32", type_at_pos(&db, pos));
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn infer_builtin_macros_line() {
|
fn infer_builtin_macros_line() {
|
||||||
assert_snapshot!(
|
assert_snapshot!(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue