@@ -5,7 +5,8 @@ use crate::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext}
5
5
use rustc_ast as ast;
6
6
use rustc_errors:: Applicability ;
7
7
use rustc_hir:: def:: Res ;
8
- use rustc_hir:: * ;
8
+ use rustc_hir:: { Expr , ExprKind , GenericArg , Path , PathSegment , QPath } ;
9
+ use rustc_hir:: { HirId , Item , ItemKind , Node , Ty , TyKind } ;
9
10
use rustc_middle:: ty;
10
11
use rustc_session:: { declare_lint_pass, declare_tool_lint} ;
11
12
use rustc_span:: hygiene:: { ExpnKind , MacroKind } ;
@@ -75,10 +76,10 @@ impl LateLintPass<'_> for QueryStability {
75
76
}
76
77
77
78
let ( span, def_id, substs) = match expr. kind {
78
- ExprKind :: MethodCall ( _ , span , _, _)
79
+ ExprKind :: MethodCall ( segment , _, _)
79
80
if let Some ( def_id) = cx. typeck_results ( ) . type_dependent_def_id ( expr. hir_id ) =>
80
81
{
81
- ( span, def_id, cx. typeck_results ( ) . node_substs ( expr. hir_id ) )
82
+ ( segment . ident . span , def_id, cx. typeck_results ( ) . node_substs ( expr. hir_id ) )
82
83
} ,
83
84
_ => {
84
85
let & ty:: FnDef ( def_id, substs) =
0 commit comments