Skip to content

Commit 8b4b867

Browse files
Rustdoc and Clippy stop misusing Key for Ty -> (adt) DefId
1 parent 5567f51 commit 8b4b867

File tree

7 files changed

+10
-21
lines changed

7 files changed

+10
-21
lines changed

src/librustdoc/html/render/print_item.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use rustc_hir as hir;
66
use rustc_hir::def::CtorKind;
77
use rustc_hir::def_id::DefId;
88
use rustc_index::IndexVec;
9-
use rustc_middle::query::Key;
109
use rustc_middle::ty::{self, TyCtxt};
1110
use rustc_span::hygiene::MacroKind;
1211
use rustc_span::symbol::{kw, sym, Symbol};
@@ -1263,7 +1262,7 @@ fn item_type_alias(w: &mut Buffer, cx: &mut Context<'_>, it: &clean::Item, t: &c
12631262
clean::TypeAliasInnerType::Enum { variants, is_non_exhaustive } => {
12641263
let variants_iter = || variants.iter().filter(|i| !i.is_stripped());
12651264
let ty = cx.tcx().type_of(it.def_id().unwrap()).instantiate_identity();
1266-
let enum_def_id = ty.ty_adt_id().unwrap();
1265+
let enum_def_id = ty.ty_adt_def().unwrap().did();
12671266

12681267
wrap_item(w, |w| {
12691268
let variants_len = variants.len();

src/tools/clippy/clippy_lints/src/copies.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use rustc_errors::Applicability;
1212
use rustc_hir::def_id::DefIdSet;
1313
use rustc_hir::{intravisit, BinOpKind, Block, Expr, ExprKind, HirId, HirIdSet, Stmt, StmtKind};
1414
use rustc_lint::{LateContext, LateLintPass};
15-
use rustc_middle::query::Key;
1615
use rustc_session::{declare_tool_lint, impl_lint_pass};
1716
use rustc_span::hygiene::walk_chain;
1817
use rustc_span::source_map::SourceMap;
@@ -574,7 +573,7 @@ fn method_caller_is_mutable(cx: &LateContext<'_>, caller_expr: &Expr<'_>, ignore
574573
let caller_ty = cx.typeck_results().expr_ty(caller_expr);
575574
// Check if given type has inner mutability and was not set to ignored by the configuration
576575
let is_inner_mut_ty = is_interior_mut_ty(cx, caller_ty)
577-
&& !matches!(caller_ty.ty_adt_id(), Some(adt_id) if ignored_ty_ids.contains(&adt_id));
576+
&& !matches!(caller_ty.ty_adt_def(), Some(adt) if ignored_ty_ids.contains(&adt.did()));
578577

579578
is_inner_mut_ty
580579
|| caller_ty.is_mutable_ptr()

src/tools/clippy/clippy_lints/src/methods/drain_collect.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use clippy_utils::ty::is_type_lang_item;
66
use rustc_errors::Applicability;
77
use rustc_hir::{Expr, ExprKind, LangItem, Path, QPath};
88
use rustc_lint::LateContext;
9-
use rustc_middle::query::Key;
109
use rustc_middle::ty;
1110
use rustc_middle::ty::Ty;
1211
use rustc_span::{sym, Symbol};
@@ -18,10 +17,10 @@ use rustc_span::{sym, Symbol};
1817
/// `vec![1,2].drain(..).collect::<HashSet<_>>()`
1918
/// ^^^^^^^^^ ^^^^^^^^^^ false
2019
fn types_match_diagnostic_item(cx: &LateContext<'_>, expr: Ty<'_>, recv: Ty<'_>, sym: Symbol) -> bool {
21-
if let Some(expr_adt_did) = expr.ty_adt_id()
22-
&& let Some(recv_adt_did) = recv.ty_adt_id()
20+
if let Some(expr_adt) = expr.ty_adt_def()
21+
&& let Some(recv_adt) = recv.ty_adt_def()
2322
{
24-
cx.tcx.is_diagnostic_item(sym, expr_adt_did) && cx.tcx.is_diagnostic_item(sym, recv_adt_did)
23+
cx.tcx.is_diagnostic_item(sym, expr_adt.did()) && cx.tcx.is_diagnostic_item(sym, recv_adt.did())
2524
} else {
2625
false
2726
}

src/tools/clippy/clippy_lints/src/methods/redundant_as_str.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use clippy_utils::source::snippet_with_applicability;
44
use rustc_errors::Applicability;
55
use rustc_hir::Expr;
66
use rustc_lint::LateContext;
7-
use rustc_middle::query::Key;
87
use rustc_span::Span;
98

109
pub(super) fn check(
@@ -14,11 +13,7 @@ pub(super) fn check(
1413
as_str_span: Span,
1514
other_method_span: Span,
1615
) {
17-
if cx
18-
.tcx
19-
.lang_items()
20-
.string()
21-
.is_some_and(|id| Some(id) == cx.typeck_results().expr_ty(recv).ty_adt_id())
16+
if cx.typeck_results().expr_ty(recv).ty_adt_def().is_some_and(|adt| Some(adt.did()) == cx.tcx.lang_items().string())
2217
{
2318
let mut applicability = Applicability::MachineApplicable;
2419
span_lint_and_sugg(

src/tools/clippy/clippy_lints/src/mut_key.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use clippy_utils::{def_path_def_ids, trait_ref_of_method};
44
use rustc_data_structures::fx::FxHashSet;
55
use rustc_hir as hir;
66
use rustc_lint::{LateContext, LateLintPass};
7-
use rustc_middle::query::Key;
87
use rustc_middle::ty::{Adt, Ty};
98
use rustc_session::{declare_tool_lint, impl_lint_pass};
109
use rustc_span::def_id::LocalDefId;
@@ -162,7 +161,7 @@ impl MutableKeyType {
162161
// Determines if a type contains interior mutability which would affect its implementation of
163162
// [`Hash`] or [`Ord`].
164163
if is_interior_mut_ty(cx, subst_ty)
165-
&& !matches!(subst_ty.ty_adt_id(), Some(adt_id) if self.ignore_mut_def_ids.contains(&adt_id))
164+
&& !matches!(subst_ty.ty_adt_def(), Some(adt) if self.ignore_mut_def_ids.contains(&adt.did()))
166165
{
167166
span_lint(cx, MUTABLE_KEY_TYPE, span, "mutable key type");
168167
}

src/tools/clippy/clippy_lints/src/non_copy_const.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ use rustc_hir::{
1616
};
1717
use rustc_lint::{LateContext, LateLintPass, Lint};
1818
use rustc_middle::mir::interpret::{ErrorHandled, EvalToValTreeResult, GlobalId};
19-
use rustc_middle::query::Key;
2019
use rustc_middle::ty::adjustment::Adjust;
2120
use rustc_middle::ty::{self, Ty, TyCtxt};
2221
use rustc_session::{declare_tool_lint, impl_lint_pass};
@@ -189,7 +188,7 @@ impl NonCopyConst {
189188
}
190189

191190
fn is_ty_ignored(&self, ty: Ty<'_>) -> bool {
192-
matches!(ty.ty_adt_id(), Some(adt_id) if self.ignore_mut_def_ids.contains(&adt_id))
191+
matches!(ty.ty_adt_def(), Some(adt) if self.ignore_mut_def_ids.contains(&adt.did()))
193192
}
194193

195194
fn is_unfrozen<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {

src/tools/clippy/clippy_lints/src/transmute/transmute_int_to_non_zero.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use clippy_utils::sugg;
44
use rustc_errors::Applicability;
55
use rustc_hir::Expr;
66
use rustc_lint::LateContext;
7-
use rustc_middle::query::Key;
87
use rustc_middle::ty::{self, Ty};
98
use rustc_span::symbol::sym;
109

@@ -17,10 +16,10 @@ pub(super) fn check<'tcx>(
1716
to_ty: Ty<'tcx>,
1817
arg: &'tcx Expr<'_>,
1918
) -> bool {
20-
let (ty::Int(_) | ty::Uint(_), Some(to_ty_id)) = (&from_ty.kind(), to_ty.ty_adt_id()) else {
19+
let (ty::Int(_) | ty::Uint(_), Some(to_ty_adt)) = (&from_ty.kind(), to_ty.ty_adt_def()) else {
2120
return false;
2221
};
23-
let Some(to_type_sym) = cx.tcx.get_diagnostic_name(to_ty_id) else {
22+
let Some(to_type_sym) = cx.tcx.get_diagnostic_name(to_ty_adt.did()) else {
2423
return false;
2524
};
2625

0 commit comments

Comments
 (0)