]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/ast_utils.rs
Change syntax for TyAlias where clauses
[rust.git] / clippy_utils / src / ast_utils.rs
1 //! Utilities for manipulating and extracting information from `rustc_ast::ast`.
2 //!
3 //! - The `eq_foobar` functions test for semantic equality but ignores `NodeId`s and `Span`s.
4
5 #![allow(clippy::similar_names, clippy::wildcard_imports, clippy::enum_glob_use)]
6
7 use crate::{both, over};
8 use rustc_ast::ptr::P;
9 use rustc_ast::{self as ast, *};
10 use rustc_span::symbol::Ident;
11 use std::mem;
12
13 pub mod ident_iter;
14 pub use ident_iter::IdentIter;
15
16 pub fn is_useless_with_eq_exprs(kind: BinOpKind) -> bool {
17     use BinOpKind::*;
18     matches!(
19         kind,
20         Sub | Div | Eq | Lt | Le | Gt | Ge | Ne | And | Or | BitXor | BitAnd | BitOr
21     )
22 }
23
24 /// Checks if each element in the first slice is contained within the latter as per `eq_fn`.
25 pub fn unordered_over<X>(left: &[X], right: &[X], mut eq_fn: impl FnMut(&X, &X) -> bool) -> bool {
26     left.len() == right.len() && left.iter().all(|l| right.iter().any(|r| eq_fn(l, r)))
27 }
28
29 pub fn eq_id(l: Ident, r: Ident) -> bool {
30     l.name == r.name
31 }
32
33 pub fn eq_pat(l: &Pat, r: &Pat) -> bool {
34     use PatKind::*;
35     match (&l.kind, &r.kind) {
36         (Paren(l), _) => eq_pat(l, r),
37         (_, Paren(r)) => eq_pat(l, r),
38         (Wild, Wild) | (Rest, Rest) => true,
39         (Lit(l), Lit(r)) => eq_expr(l, r),
40         (Ident(b1, i1, s1), Ident(b2, i2, s2)) => b1 == b2 && eq_id(*i1, *i2) && both(s1, s2, |l, r| eq_pat(l, r)),
41         (Range(lf, lt, le), Range(rf, rt, re)) => {
42             eq_expr_opt(lf, rf) && eq_expr_opt(lt, rt) && eq_range_end(&le.node, &re.node)
43         },
44         (Box(l), Box(r))
45         | (Ref(l, Mutability::Not), Ref(r, Mutability::Not))
46         | (Ref(l, Mutability::Mut), Ref(r, Mutability::Mut)) => eq_pat(l, r),
47         (Tuple(l), Tuple(r)) | (Slice(l), Slice(r)) => over(l, r, |l, r| eq_pat(l, r)),
48         (Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
49         (TupleStruct(lqself, lp, lfs), TupleStruct(rqself, rp, rfs)) => {
50             eq_maybe_qself(lqself, rqself) && eq_path(lp, rp) && over(lfs, rfs, |l, r| eq_pat(l, r))
51         },
52         (Struct(lqself, lp, lfs, lr), Struct(rqself, rp, rfs, rr)) => {
53             lr == rr && eq_maybe_qself(lqself, rqself) && eq_path(lp, rp) && unordered_over(lfs, rfs, eq_field_pat)
54         },
55         (Or(ls), Or(rs)) => unordered_over(ls, rs, |l, r| eq_pat(l, r)),
56         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
57         _ => false,
58     }
59 }
60
61 pub fn eq_range_end(l: &RangeEnd, r: &RangeEnd) -> bool {
62     match (l, r) {
63         (RangeEnd::Excluded, RangeEnd::Excluded) => true,
64         (RangeEnd::Included(l), RangeEnd::Included(r)) => {
65             matches!(l, RangeSyntax::DotDotEq) == matches!(r, RangeSyntax::DotDotEq)
66         },
67         _ => false,
68     }
69 }
70
71 pub fn eq_field_pat(l: &PatField, r: &PatField) -> bool {
72     l.is_placeholder == r.is_placeholder
73         && eq_id(l.ident, r.ident)
74         && eq_pat(&l.pat, &r.pat)
75         && over(&l.attrs, &r.attrs, eq_attr)
76 }
77
78 pub fn eq_qself(l: &QSelf, r: &QSelf) -> bool {
79     l.position == r.position && eq_ty(&l.ty, &r.ty)
80 }
81
82 pub fn eq_maybe_qself(l: &Option<QSelf>, r: &Option<QSelf>) -> bool {
83     match (l, r) {
84         (Some(l), Some(r)) => eq_qself(l, r),
85         (None, None) => true,
86         _ => false,
87     }
88 }
89
90 pub fn eq_path(l: &Path, r: &Path) -> bool {
91     over(&l.segments, &r.segments, eq_path_seg)
92 }
93
94 pub fn eq_path_seg(l: &PathSegment, r: &PathSegment) -> bool {
95     eq_id(l.ident, r.ident) && both(&l.args, &r.args, |l, r| eq_generic_args(l, r))
96 }
97
98 pub fn eq_generic_args(l: &GenericArgs, r: &GenericArgs) -> bool {
99     match (l, r) {
100         (GenericArgs::AngleBracketed(l), GenericArgs::AngleBracketed(r)) => over(&l.args, &r.args, eq_angle_arg),
101         (GenericArgs::Parenthesized(l), GenericArgs::Parenthesized(r)) => {
102             over(&l.inputs, &r.inputs, |l, r| eq_ty(l, r)) && eq_fn_ret_ty(&l.output, &r.output)
103         },
104         _ => false,
105     }
106 }
107
108 pub fn eq_angle_arg(l: &AngleBracketedArg, r: &AngleBracketedArg) -> bool {
109     match (l, r) {
110         (AngleBracketedArg::Arg(l), AngleBracketedArg::Arg(r)) => eq_generic_arg(l, r),
111         (AngleBracketedArg::Constraint(l), AngleBracketedArg::Constraint(r)) => eq_assoc_constraint(l, r),
112         _ => false,
113     }
114 }
115
116 pub fn eq_generic_arg(l: &GenericArg, r: &GenericArg) -> bool {
117     match (l, r) {
118         (GenericArg::Lifetime(l), GenericArg::Lifetime(r)) => eq_id(l.ident, r.ident),
119         (GenericArg::Type(l), GenericArg::Type(r)) => eq_ty(l, r),
120         (GenericArg::Const(l), GenericArg::Const(r)) => eq_expr(&l.value, &r.value),
121         _ => false,
122     }
123 }
124
125 pub fn eq_expr_opt(l: &Option<P<Expr>>, r: &Option<P<Expr>>) -> bool {
126     both(l, r, |l, r| eq_expr(l, r))
127 }
128
129 pub fn eq_struct_rest(l: &StructRest, r: &StructRest) -> bool {
130     match (l, r) {
131         (StructRest::Base(lb), StructRest::Base(rb)) => eq_expr(lb, rb),
132         (StructRest::Rest(_), StructRest::Rest(_)) | (StructRest::None, StructRest::None) => true,
133         _ => false,
134     }
135 }
136
137 pub fn eq_expr(l: &Expr, r: &Expr) -> bool {
138     use ExprKind::*;
139     if !over(&l.attrs, &r.attrs, eq_attr) {
140         return false;
141     }
142     match (&l.kind, &r.kind) {
143         (Paren(l), _) => eq_expr(l, r),
144         (_, Paren(r)) => eq_expr(l, r),
145         (Err, Err) => true,
146         (Box(l), Box(r)) | (Try(l), Try(r)) | (Await(l), Await(r)) => eq_expr(l, r),
147         (Array(l), Array(r)) | (Tup(l), Tup(r)) => over(l, r, |l, r| eq_expr(l, r)),
148         (Repeat(le, ls), Repeat(re, rs)) => eq_expr(le, re) && eq_expr(&ls.value, &rs.value),
149         (Call(lc, la), Call(rc, ra)) => eq_expr(lc, rc) && over(la, ra, |l, r| eq_expr(l, r)),
150         (MethodCall(lc, la, _), MethodCall(rc, ra, _)) => eq_path_seg(lc, rc) && over(la, ra, |l, r| eq_expr(l, r)),
151         (Binary(lo, ll, lr), Binary(ro, rl, rr)) => lo.node == ro.node && eq_expr(ll, rl) && eq_expr(lr, rr),
152         (Unary(lo, l), Unary(ro, r)) => mem::discriminant(lo) == mem::discriminant(ro) && eq_expr(l, r),
153         (Lit(l), Lit(r)) => l.kind == r.kind,
154         (Cast(l, lt), Cast(r, rt)) | (Type(l, lt), Type(r, rt)) => eq_expr(l, r) && eq_ty(lt, rt),
155         (Let(lp, le, _), Let(rp, re, _)) => eq_pat(lp, rp) && eq_expr(le, re),
156         (If(lc, lt, le), If(rc, rt, re)) => eq_expr(lc, rc) && eq_block(lt, rt) && eq_expr_opt(le, re),
157         (While(lc, lt, ll), While(rc, rt, rl)) => eq_label(ll, rl) && eq_expr(lc, rc) && eq_block(lt, rt),
158         (ForLoop(lp, li, lt, ll), ForLoop(rp, ri, rt, rl)) => {
159             eq_label(ll, rl) && eq_pat(lp, rp) && eq_expr(li, ri) && eq_block(lt, rt)
160         },
161         (Loop(lt, ll), Loop(rt, rl)) => eq_label(ll, rl) && eq_block(lt, rt),
162         (Block(lb, ll), Block(rb, rl)) => eq_label(ll, rl) && eq_block(lb, rb),
163         (TryBlock(l), TryBlock(r)) => eq_block(l, r),
164         (Yield(l), Yield(r)) | (Ret(l), Ret(r)) => eq_expr_opt(l, r),
165         (Break(ll, le), Break(rl, re)) => eq_label(ll, rl) && eq_expr_opt(le, re),
166         (Continue(ll), Continue(rl)) => eq_label(ll, rl),
167         (Assign(l1, l2, _), Assign(r1, r2, _)) | (Index(l1, l2), Index(r1, r2)) => eq_expr(l1, r1) && eq_expr(l2, r2),
168         (AssignOp(lo, lp, lv), AssignOp(ro, rp, rv)) => lo.node == ro.node && eq_expr(lp, rp) && eq_expr(lv, rv),
169         (Field(lp, lf), Field(rp, rf)) => eq_id(*lf, *rf) && eq_expr(lp, rp),
170         (Match(ls, la), Match(rs, ra)) => eq_expr(ls, rs) && over(la, ra, eq_arm),
171         (Closure(lc, la, lm, lf, lb, _), Closure(rc, ra, rm, rf, rb, _)) => {
172             lc == rc && la.is_async() == ra.is_async() && lm == rm && eq_fn_decl(lf, rf) && eq_expr(lb, rb)
173         },
174         (Async(lc, _, lb), Async(rc, _, rb)) => lc == rc && eq_block(lb, rb),
175         (Range(lf, lt, ll), Range(rf, rt, rl)) => ll == rl && eq_expr_opt(lf, rf) && eq_expr_opt(lt, rt),
176         (AddrOf(lbk, lm, le), AddrOf(rbk, rm, re)) => lbk == rbk && lm == rm && eq_expr(le, re),
177         (Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
178         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
179         (Struct(lse), Struct(rse)) => {
180             eq_maybe_qself(&lse.qself, &rse.qself)
181                 && eq_path(&lse.path, &rse.path)
182                 && eq_struct_rest(&lse.rest, &rse.rest)
183                 && unordered_over(&lse.fields, &rse.fields, eq_field)
184         },
185         _ => false,
186     }
187 }
188
189 pub fn eq_field(l: &ExprField, r: &ExprField) -> bool {
190     l.is_placeholder == r.is_placeholder
191         && eq_id(l.ident, r.ident)
192         && eq_expr(&l.expr, &r.expr)
193         && over(&l.attrs, &r.attrs, eq_attr)
194 }
195
196 pub fn eq_arm(l: &Arm, r: &Arm) -> bool {
197     l.is_placeholder == r.is_placeholder
198         && eq_pat(&l.pat, &r.pat)
199         && eq_expr(&l.body, &r.body)
200         && eq_expr_opt(&l.guard, &r.guard)
201         && over(&l.attrs, &r.attrs, eq_attr)
202 }
203
204 pub fn eq_label(l: &Option<Label>, r: &Option<Label>) -> bool {
205     both(l, r, |l, r| eq_id(l.ident, r.ident))
206 }
207
208 pub fn eq_block(l: &Block, r: &Block) -> bool {
209     l.rules == r.rules && over(&l.stmts, &r.stmts, eq_stmt)
210 }
211
212 pub fn eq_stmt(l: &Stmt, r: &Stmt) -> bool {
213     use StmtKind::*;
214     match (&l.kind, &r.kind) {
215         (Local(l), Local(r)) => {
216             eq_pat(&l.pat, &r.pat)
217                 && both(&l.ty, &r.ty, |l, r| eq_ty(l, r))
218                 && eq_local_kind(&l.kind, &r.kind)
219                 && over(&l.attrs, &r.attrs, eq_attr)
220         },
221         (Item(l), Item(r)) => eq_item(l, r, eq_item_kind),
222         (Expr(l), Expr(r)) | (Semi(l), Semi(r)) => eq_expr(l, r),
223         (Empty, Empty) => true,
224         (MacCall(l), MacCall(r)) => {
225             l.style == r.style && eq_mac_call(&l.mac, &r.mac) && over(&l.attrs, &r.attrs, eq_attr)
226         },
227         _ => false,
228     }
229 }
230
231 pub fn eq_local_kind(l: &LocalKind, r: &LocalKind) -> bool {
232     use LocalKind::*;
233     match (l, r) {
234         (Decl, Decl) => true,
235         (Init(l), Init(r)) => eq_expr(l, r),
236         (InitElse(li, le), InitElse(ri, re)) => eq_expr(li, ri) && eq_block(le, re),
237         _ => false,
238     }
239 }
240
241 pub fn eq_item<K>(l: &Item<K>, r: &Item<K>, mut eq_kind: impl FnMut(&K, &K) -> bool) -> bool {
242     eq_id(l.ident, r.ident) && over(&l.attrs, &r.attrs, eq_attr) && eq_vis(&l.vis, &r.vis) && eq_kind(&l.kind, &r.kind)
243 }
244
245 #[allow(clippy::too_many_lines)] // Just a big match statement
246 pub fn eq_item_kind(l: &ItemKind, r: &ItemKind) -> bool {
247     use ItemKind::*;
248     match (l, r) {
249         (ExternCrate(l), ExternCrate(r)) => l == r,
250         (Use(l), Use(r)) => eq_use_tree(l, r),
251         (Static(lt, lm, le), Static(rt, rm, re)) => lm == rm && eq_ty(lt, rt) && eq_expr_opt(le, re),
252         (Const(ld, lt, le), Const(rd, rt, re)) => eq_defaultness(*ld, *rd) && eq_ty(lt, rt) && eq_expr_opt(le, re),
253         (
254             Fn(box ast::Fn {
255                 defaultness: ld,
256                 sig: lf,
257                 generics: lg,
258                 body: lb,
259             }),
260             Fn(box ast::Fn {
261                 defaultness: rd,
262                 sig: rf,
263                 generics: rg,
264                 body: rb,
265             }),
266         ) => {
267             eq_defaultness(*ld, *rd) && eq_fn_sig(lf, rf) && eq_generics(lg, rg) && both(lb, rb, |l, r| eq_block(l, r))
268         },
269         (Mod(lu, lmk), Mod(ru, rmk)) => {
270             lu == ru
271                 && match (lmk, rmk) {
272                     (ModKind::Loaded(litems, linline, _), ModKind::Loaded(ritems, rinline, _)) => {
273                         linline == rinline && over(litems, ritems, |l, r| eq_item(l, r, eq_item_kind))
274                     },
275                     (ModKind::Unloaded, ModKind::Unloaded) => true,
276                     _ => false,
277                 }
278         },
279         (ForeignMod(l), ForeignMod(r)) => {
280             both(&l.abi, &r.abi, eq_str_lit) && over(&l.items, &r.items, |l, r| eq_item(l, r, eq_foreign_item_kind))
281         },
282         (TyAlias(box ast::TyAlias { defaultness: ld, generics: lg, bounds: lb, ty: lt, .. }),
283          TyAlias(box ast::TyAlias { defaultness: rd, generics: rg, bounds: rb, ty: rt, .. })) => {
284             eq_defaultness(*ld, *rd)
285                 && eq_generics(lg, rg)
286                 && over(lb, rb, eq_generic_bound)
287                 && both(lt, rt, |l, r| eq_ty(l, r))
288         },
289         (Enum(le, lg), Enum(re, rg)) => over(&le.variants, &re.variants, eq_variant) && eq_generics(lg, rg),
290         (Struct(lv, lg), Struct(rv, rg)) | (Union(lv, lg), Union(rv, rg)) => {
291             eq_variant_data(lv, rv) && eq_generics(lg, rg)
292         },
293         (
294             Trait(box ast::Trait {
295                 is_auto: la,
296                 unsafety: lu,
297                 generics: lg,
298                 bounds: lb,
299                 items: li,
300             }),
301             Trait(box ast::Trait {
302                 is_auto: ra,
303                 unsafety: ru,
304                 generics: rg,
305                 bounds: rb,
306                 items: ri,
307             }),
308         ) => {
309             la == ra
310                 && matches!(lu, Unsafe::No) == matches!(ru, Unsafe::No)
311                 && eq_generics(lg, rg)
312                 && over(lb, rb, eq_generic_bound)
313                 && over(li, ri, |l, r| eq_item(l, r, eq_assoc_item_kind))
314         },
315         (TraitAlias(lg, lb), TraitAlias(rg, rb)) => eq_generics(lg, rg) && over(lb, rb, eq_generic_bound),
316         (
317             Impl(box ast::Impl {
318                 unsafety: lu,
319                 polarity: lp,
320                 defaultness: ld,
321                 constness: lc,
322                 generics: lg,
323                 of_trait: lot,
324                 self_ty: lst,
325                 items: li,
326             }),
327             Impl(box ast::Impl {
328                 unsafety: ru,
329                 polarity: rp,
330                 defaultness: rd,
331                 constness: rc,
332                 generics: rg,
333                 of_trait: rot,
334                 self_ty: rst,
335                 items: ri,
336             }),
337         ) => {
338             matches!(lu, Unsafe::No) == matches!(ru, Unsafe::No)
339                 && matches!(lp, ImplPolarity::Positive) == matches!(rp, ImplPolarity::Positive)
340                 && eq_defaultness(*ld, *rd)
341                 && matches!(lc, ast::Const::No) == matches!(rc, ast::Const::No)
342                 && eq_generics(lg, rg)
343                 && both(lot, rot, |l, r| eq_path(&l.path, &r.path))
344                 && eq_ty(lst, rst)
345                 && over(li, ri, |l, r| eq_item(l, r, eq_assoc_item_kind))
346         },
347         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
348         (MacroDef(l), MacroDef(r)) => l.macro_rules == r.macro_rules && eq_mac_args(&l.body, &r.body),
349         _ => false,
350     }
351 }
352
353 pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
354     use ForeignItemKind::*;
355     match (l, r) {
356         (Static(lt, lm, le), Static(rt, rm, re)) => lm == rm && eq_ty(lt, rt) && eq_expr_opt(le, re),
357         (
358             Fn(box ast::Fn {
359                 defaultness: ld,
360                 sig: lf,
361                 generics: lg,
362                 body: lb,
363             }),
364             Fn(box ast::Fn {
365                 defaultness: rd,
366                 sig: rf,
367                 generics: rg,
368                 body: rb,
369             }),
370         ) => {
371             eq_defaultness(*ld, *rd) && eq_fn_sig(lf, rf) && eq_generics(lg, rg) && both(lb, rb, |l, r| eq_block(l, r))
372         },
373         (TyAlias(box ast::TyAlias { defaultness: ld, generics: lg, bounds: lb, ty: lt, .. }),
374          TyAlias(box ast::TyAlias { defaultness: rd, generics: rg, bounds: rb, ty: rt, .. })) => {
375             eq_defaultness(*ld, *rd)
376                 && eq_generics(lg, rg)
377                 && over(lb, rb, eq_generic_bound)
378                 && both(lt, rt, |l, r| eq_ty(l, r))
379         },
380         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
381         _ => false,
382     }
383 }
384
385 pub fn eq_assoc_item_kind(l: &AssocItemKind, r: &AssocItemKind) -> bool {
386     use AssocItemKind::*;
387     match (l, r) {
388         (Const(ld, lt, le), Const(rd, rt, re)) => eq_defaultness(*ld, *rd) && eq_ty(lt, rt) && eq_expr_opt(le, re),
389         (
390             Fn(box ast::Fn {
391                 defaultness: ld,
392                 sig: lf,
393                 generics: lg,
394                 body: lb,
395             }),
396             Fn(box ast::Fn {
397                 defaultness: rd,
398                 sig: rf,
399                 generics: rg,
400                 body: rb,
401             }),
402         ) => {
403             eq_defaultness(*ld, *rd) && eq_fn_sig(lf, rf) && eq_generics(lg, rg) && both(lb, rb, |l, r| eq_block(l, r))
404         },
405         (TyAlias(box ast::TyAlias { defaultness: ld, generics: lg, bounds: lb, ty: lt, .. }),
406          TyAlias(box ast::TyAlias { defaultness: rd, generics: rg, bounds: rb, ty: rt, .. })) => {
407             eq_defaultness(*ld, *rd)
408                 && eq_generics(lg, rg)
409                 && over(lb, rb, eq_generic_bound)
410                 && both(lt, rt, |l, r| eq_ty(l, r))
411         },
412         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
413         _ => false,
414     }
415 }
416
417 pub fn eq_variant(l: &Variant, r: &Variant) -> bool {
418     l.is_placeholder == r.is_placeholder
419         && over(&l.attrs, &r.attrs, eq_attr)
420         && eq_vis(&l.vis, &r.vis)
421         && eq_id(l.ident, r.ident)
422         && eq_variant_data(&l.data, &r.data)
423         && both(&l.disr_expr, &r.disr_expr, |l, r| eq_expr(&l.value, &r.value))
424 }
425
426 pub fn eq_variant_data(l: &VariantData, r: &VariantData) -> bool {
427     use VariantData::*;
428     match (l, r) {
429         (Unit(_), Unit(_)) => true,
430         (Struct(l, _), Struct(r, _)) | (Tuple(l, _), Tuple(r, _)) => over(l, r, eq_struct_field),
431         _ => false,
432     }
433 }
434
435 pub fn eq_struct_field(l: &FieldDef, r: &FieldDef) -> bool {
436     l.is_placeholder == r.is_placeholder
437         && over(&l.attrs, &r.attrs, eq_attr)
438         && eq_vis(&l.vis, &r.vis)
439         && both(&l.ident, &r.ident, |l, r| eq_id(*l, *r))
440         && eq_ty(&l.ty, &r.ty)
441 }
442
443 pub fn eq_fn_sig(l: &FnSig, r: &FnSig) -> bool {
444     eq_fn_decl(&l.decl, &r.decl) && eq_fn_header(&l.header, &r.header)
445 }
446
447 pub fn eq_fn_header(l: &FnHeader, r: &FnHeader) -> bool {
448     matches!(l.unsafety, Unsafe::No) == matches!(r.unsafety, Unsafe::No)
449         && l.asyncness.is_async() == r.asyncness.is_async()
450         && matches!(l.constness, Const::No) == matches!(r.constness, Const::No)
451         && eq_ext(&l.ext, &r.ext)
452 }
453
454 pub fn eq_generics(l: &Generics, r: &Generics) -> bool {
455     over(&l.params, &r.params, eq_generic_param)
456         && over(&l.where_clause.predicates, &r.where_clause.predicates, |l, r| {
457             eq_where_predicate(l, r)
458         })
459 }
460
461 pub fn eq_where_predicate(l: &WherePredicate, r: &WherePredicate) -> bool {
462     use WherePredicate::*;
463     match (l, r) {
464         (BoundPredicate(l), BoundPredicate(r)) => {
465             over(&l.bound_generic_params, &r.bound_generic_params, |l, r| {
466                 eq_generic_param(l, r)
467             }) && eq_ty(&l.bounded_ty, &r.bounded_ty)
468                 && over(&l.bounds, &r.bounds, eq_generic_bound)
469         },
470         (RegionPredicate(l), RegionPredicate(r)) => {
471             eq_id(l.lifetime.ident, r.lifetime.ident) && over(&l.bounds, &r.bounds, eq_generic_bound)
472         },
473         (EqPredicate(l), EqPredicate(r)) => eq_ty(&l.lhs_ty, &r.lhs_ty) && eq_ty(&l.rhs_ty, &r.rhs_ty),
474         _ => false,
475     }
476 }
477
478 pub fn eq_use_tree(l: &UseTree, r: &UseTree) -> bool {
479     eq_path(&l.prefix, &r.prefix) && eq_use_tree_kind(&l.kind, &r.kind)
480 }
481
482 pub fn eq_anon_const(l: &AnonConst, r: &AnonConst) -> bool {
483     eq_expr(&l.value, &r.value)
484 }
485
486 pub fn eq_use_tree_kind(l: &UseTreeKind, r: &UseTreeKind) -> bool {
487     use UseTreeKind::*;
488     match (l, r) {
489         (Glob, Glob) => true,
490         (Simple(l, _, _), Simple(r, _, _)) => both(l, r, |l, r| eq_id(*l, *r)),
491         (Nested(l), Nested(r)) => over(l, r, |(l, _), (r, _)| eq_use_tree(l, r)),
492         _ => false,
493     }
494 }
495
496 pub fn eq_defaultness(l: Defaultness, r: Defaultness) -> bool {
497     matches!(
498         (l, r),
499         (Defaultness::Final, Defaultness::Final) | (Defaultness::Default(_), Defaultness::Default(_))
500     )
501 }
502
503 pub fn eq_vis(l: &Visibility, r: &Visibility) -> bool {
504     use VisibilityKind::*;
505     match (&l.kind, &r.kind) {
506         (Public, Public) | (Inherited, Inherited) | (Crate(_), Crate(_)) => true,
507         (Restricted { path: l, .. }, Restricted { path: r, .. }) => eq_path(l, r),
508         _ => false,
509     }
510 }
511
512 pub fn eq_fn_decl(l: &FnDecl, r: &FnDecl) -> bool {
513     eq_fn_ret_ty(&l.output, &r.output)
514         && over(&l.inputs, &r.inputs, |l, r| {
515             l.is_placeholder == r.is_placeholder
516                 && eq_pat(&l.pat, &r.pat)
517                 && eq_ty(&l.ty, &r.ty)
518                 && over(&l.attrs, &r.attrs, eq_attr)
519         })
520 }
521
522 pub fn eq_fn_ret_ty(l: &FnRetTy, r: &FnRetTy) -> bool {
523     match (l, r) {
524         (FnRetTy::Default(_), FnRetTy::Default(_)) => true,
525         (FnRetTy::Ty(l), FnRetTy::Ty(r)) => eq_ty(l, r),
526         _ => false,
527     }
528 }
529
530 pub fn eq_ty(l: &Ty, r: &Ty) -> bool {
531     use TyKind::*;
532     match (&l.kind, &r.kind) {
533         (Paren(l), _) => eq_ty(l, r),
534         (_, Paren(r)) => eq_ty(l, r),
535         (Never, Never) | (Infer, Infer) | (ImplicitSelf, ImplicitSelf) | (Err, Err) | (CVarArgs, CVarArgs) => true,
536         (Slice(l), Slice(r)) => eq_ty(l, r),
537         (Array(le, ls), Array(re, rs)) => eq_ty(le, re) && eq_expr(&ls.value, &rs.value),
538         (Ptr(l), Ptr(r)) => l.mutbl == r.mutbl && eq_ty(&l.ty, &r.ty),
539         (Rptr(ll, l), Rptr(rl, r)) => {
540             both(ll, rl, |l, r| eq_id(l.ident, r.ident)) && l.mutbl == r.mutbl && eq_ty(&l.ty, &r.ty)
541         },
542         (BareFn(l), BareFn(r)) => {
543             l.unsafety == r.unsafety
544                 && eq_ext(&l.ext, &r.ext)
545                 && over(&l.generic_params, &r.generic_params, eq_generic_param)
546                 && eq_fn_decl(&l.decl, &r.decl)
547         },
548         (Tup(l), Tup(r)) => over(l, r, |l, r| eq_ty(l, r)),
549         (Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
550         (TraitObject(lg, ls), TraitObject(rg, rs)) => ls == rs && over(lg, rg, eq_generic_bound),
551         (ImplTrait(_, lg), ImplTrait(_, rg)) => over(lg, rg, eq_generic_bound),
552         (Typeof(l), Typeof(r)) => eq_expr(&l.value, &r.value),
553         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
554         _ => false,
555     }
556 }
557
558 pub fn eq_ext(l: &Extern, r: &Extern) -> bool {
559     use Extern::*;
560     match (l, r) {
561         (None, None) | (Implicit, Implicit) => true,
562         (Explicit(l), Explicit(r)) => eq_str_lit(l, r),
563         _ => false,
564     }
565 }
566
567 pub fn eq_str_lit(l: &StrLit, r: &StrLit) -> bool {
568     l.style == r.style && l.symbol == r.symbol && l.suffix == r.suffix
569 }
570
571 pub fn eq_poly_ref_trait(l: &PolyTraitRef, r: &PolyTraitRef) -> bool {
572     eq_path(&l.trait_ref.path, &r.trait_ref.path)
573         && over(&l.bound_generic_params, &r.bound_generic_params, |l, r| {
574             eq_generic_param(l, r)
575         })
576 }
577
578 pub fn eq_generic_param(l: &GenericParam, r: &GenericParam) -> bool {
579     use GenericParamKind::*;
580     l.is_placeholder == r.is_placeholder
581         && eq_id(l.ident, r.ident)
582         && over(&l.bounds, &r.bounds, eq_generic_bound)
583         && match (&l.kind, &r.kind) {
584             (Lifetime, Lifetime) => true,
585             (Type { default: l }, Type { default: r }) => both(l, r, |l, r| eq_ty(l, r)),
586             (
587                 Const {
588                     ty: lt,
589                     kw_span: _,
590                     default: ld,
591                 },
592                 Const {
593                     ty: rt,
594                     kw_span: _,
595                     default: rd,
596                 },
597             ) => eq_ty(lt, rt) && both(ld, rd, eq_anon_const),
598             _ => false,
599         }
600         && over(&l.attrs, &r.attrs, eq_attr)
601 }
602
603 pub fn eq_generic_bound(l: &GenericBound, r: &GenericBound) -> bool {
604     use GenericBound::*;
605     match (l, r) {
606         (Trait(ptr1, tbm1), Trait(ptr2, tbm2)) => tbm1 == tbm2 && eq_poly_ref_trait(ptr1, ptr2),
607         (Outlives(l), Outlives(r)) => eq_id(l.ident, r.ident),
608         _ => false,
609     }
610 }
611
612 fn eq_term(l: &Term, r: &Term) -> bool {
613     match (l, r) {
614         (Term::Ty(l), Term::Ty(r)) => eq_ty(l, r),
615         (Term::Const(l), Term::Const(r)) => eq_anon_const(l, r),
616         _ => false,
617     }
618 }
619
620 pub fn eq_assoc_constraint(l: &AssocConstraint, r: &AssocConstraint) -> bool {
621     use AssocConstraintKind::*;
622     eq_id(l.ident, r.ident)
623         && match (&l.kind, &r.kind) {
624             (Equality { term: l }, Equality { term: r }) => eq_term(l, r),
625             (Bound { bounds: l }, Bound { bounds: r }) => over(l, r, eq_generic_bound),
626             _ => false,
627         }
628 }
629
630 pub fn eq_mac_call(l: &MacCall, r: &MacCall) -> bool {
631     eq_path(&l.path, &r.path) && eq_mac_args(&l.args, &r.args)
632 }
633
634 pub fn eq_attr(l: &Attribute, r: &Attribute) -> bool {
635     use AttrKind::*;
636     l.style == r.style
637         && match (&l.kind, &r.kind) {
638             (DocComment(l1, l2), DocComment(r1, r2)) => l1 == r1 && l2 == r2,
639             (Normal(l, _), Normal(r, _)) => eq_path(&l.path, &r.path) && eq_mac_args(&l.args, &r.args),
640             _ => false,
641         }
642 }
643
644 pub fn eq_mac_args(l: &MacArgs, r: &MacArgs) -> bool {
645     use MacArgs::*;
646     match (l, r) {
647         (Empty, Empty) => true,
648         (Delimited(_, ld, lts), Delimited(_, rd, rts)) => ld == rd && lts.eq_unspanned(rts),
649         (Eq(_, lt), Eq(_, rt)) => lt.kind == rt.kind,
650         _ => false,
651     }
652 }