mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 06:03:58 +00:00
Auto merge of #15834 - lnicola:derive-docs, r=lnicola
fix: Fix docs path for derive macros Fixes #15831. Not sure about `attr`, I don't think those are documented anyway. And many macros don't work because we pick the wrong path.
This commit is contained in:
commit
69432287cb
1 changed files with 11 additions and 1 deletions
|
@ -602,7 +602,17 @@ fn filename_and_frag_for_def(
|
|||
}
|
||||
Definition::Const(c) => format!("const.{}.html", c.name(db)?.display(db.upcast())),
|
||||
Definition::Static(s) => format!("static.{}.html", s.name(db).display(db.upcast())),
|
||||
Definition::Macro(mac) => format!("macro.{}.html", mac.name(db).display(db.upcast())),
|
||||
Definition::Macro(mac) => match mac.kind(db) {
|
||||
hir::MacroKind::Declarative
|
||||
| hir::MacroKind::BuiltIn
|
||||
| hir::MacroKind::Attr
|
||||
| hir::MacroKind::ProcMacro => {
|
||||
format!("macro.{}.html", mac.name(db).display(db.upcast()))
|
||||
}
|
||||
hir::MacroKind::Derive => {
|
||||
format!("derive.{}.html", mac.name(db).display(db.upcast()))
|
||||
}
|
||||
},
|
||||
Definition::Field(field) => {
|
||||
let def = match field.parent_def(db) {
|
||||
hir::VariantDef::Struct(it) => Definition::Adt(it.into()),
|
||||
|
|
Loading…
Reference in a new issue