Use a qualified path to make it more clear where list_contains_name
function comes from
This commit is contained in:
parent
58a34a4dde
commit
fa51c0f472
@ -7,7 +7,6 @@ use crate::clean::{
|
|||||||
};
|
};
|
||||||
use crate::core::DocContext;
|
use crate::core::DocContext;
|
||||||
|
|
||||||
use rustc_attr::list_contains_name;
|
|
||||||
use rustc_data_structures::fx::FxHashSet;
|
use rustc_data_structures::fx::FxHashSet;
|
||||||
use rustc_hir as hir;
|
use rustc_hir as hir;
|
||||||
use rustc_hir::def::{DefKind, Res};
|
use rustc_hir::def::{DefKind, Res};
|
||||||
@ -533,6 +532,6 @@ crate fn find_nearest_parent_module(tcx: TyCtxt<'_>, def_id: DefId) -> Option<De
|
|||||||
crate fn has_doc_flag(attrs: Attributes<'_>, flag: Symbol) -> bool {
|
crate fn has_doc_flag(attrs: Attributes<'_>, flag: Symbol) -> bool {
|
||||||
attrs.iter().any(|attr| {
|
attrs.iter().any(|attr| {
|
||||||
attr.has_name(sym::doc)
|
attr.has_name(sym::doc)
|
||||||
&& attr.meta_item_list().map_or(false, |l| list_contains_name(&l, flag))
|
&& attr.meta_item_list().map_or(false, |l| rustc_attr::list_contains_name(&l, flag))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user