mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
Adapt ui-fulldeps.
This commit is contained in:
parent
15d6325747
commit
1aab86eae2
@ -16,6 +16,7 @@ use rustc_hir as hir;
|
|||||||
use rustc_hir::intravisit;
|
use rustc_hir::intravisit;
|
||||||
use rustc_hir::Node;
|
use rustc_hir::Node;
|
||||||
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
||||||
|
use rustc_span::def_id::LocalDefId;
|
||||||
use rustc_span::source_map;
|
use rustc_span::source_map;
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
@ -40,8 +41,9 @@ impl<'tcx> LateLintPass<'tcx> for MissingAllowedAttrPass {
|
|||||||
_: &'tcx hir::FnDecl,
|
_: &'tcx hir::FnDecl,
|
||||||
_: &'tcx hir::Body,
|
_: &'tcx hir::Body,
|
||||||
span: source_map::Span,
|
span: source_map::Span,
|
||||||
id: hir::HirId,
|
def_id: LocalDefId,
|
||||||
) {
|
) {
|
||||||
|
let id = cx.tcx.hir().local_def_id_to_hir_id(def_id);
|
||||||
let item = match cx.tcx.hir().get(id) {
|
let item = match cx.tcx.hir().get(id) {
|
||||||
Node::Item(item) => item,
|
Node::Item(item) => item,
|
||||||
_ => cx.tcx.hir().expect_item(cx.tcx.hir().get_parent_item(id).def_id),
|
_ => cx.tcx.hir().expect_item(cx.tcx.hir().get_parent_item(id).def_id),
|
||||||
|
Loading…
Reference in New Issue
Block a user