Skip to content

Commit e48c00b

Browse files
Fix dogfood lints
1 parent 117839c commit e48c00b

File tree

4 files changed

+39
-25
lines changed

4 files changed

+39
-25
lines changed

clippy_utils/src/lib.rs

+13-8
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ macro_rules! extract_msrv_attr {
149149

150150
/// If the given expression is a local binding, find the initializer expression.
151151
/// If that initializer expression is another local binding, find its initializer again.
152+
///
152153
/// This process repeats as long as possible (but usually no more than once). Initializer
153154
/// expressions with adjustments are ignored. If this is not desired, use [`find_binding_init`]
154155
/// instead.
@@ -179,6 +180,7 @@ pub fn expr_or_init<'a, 'b, 'tcx: 'b>(cx: &LateContext<'tcx>, mut expr: &'a Expr
179180
}
180181

181182
/// Finds the initializer expression for a local binding. Returns `None` if the binding is mutable.
183+
///
182184
/// By only considering immutable bindings, we guarantee that the returned expression represents the
183185
/// value of the binding wherever it is referenced.
184186
///
@@ -427,12 +429,12 @@ pub fn qpath_generic_tys<'tcx>(qpath: &QPath<'tcx>) -> impl Iterator<Item = &'tc
427429
})
428430
}
429431

430-
/// THIS METHOD IS DEPRECATED and will eventually be removed since it does not match against the
432+
/// THIS METHOD IS DEPRECATED. Matches a `QPath` against a slice of segment string literals.
433+
///
434+
/// This method is deprecated and will eventually be removed since it does not match against the
431435
/// entire path or resolved `DefId`. Prefer using `match_def_path`. Consider getting a `DefId` from
432436
/// `QPath::Resolved.1.res.opt_def_id()`.
433437
///
434-
/// Matches a `QPath` against a slice of segment string literals.
435-
///
436438
/// There is also `match_path` if you are dealing with a `rustc_hir::Path` instead of a
437439
/// `rustc_hir::QPath`.
438440
///
@@ -481,12 +483,12 @@ pub fn is_path_diagnostic_item<'tcx>(
481483
path_def_id(cx, maybe_path).map_or(false, |id| cx.tcx.is_diagnostic_item(diag_item, id))
482484
}
483485

484-
/// THIS METHOD IS DEPRECATED and will eventually be removed since it does not match against the
486+
/// THIS METHOD IS DEPRECATED. Matches a `Path` against a slice of segment string literals.
487+
///
488+
/// This method is deprecated and will eventually be removed since it does not match against the
485489
/// entire path or resolved `DefId`. Prefer using `match_def_path`. Consider getting a `DefId` from
486490
/// `QPath::Resolved.1.res.opt_def_id()`.
487491
///
488-
/// Matches a `Path` against a slice of segment string literals.
489-
///
490492
/// There is also `match_qpath` if you are dealing with a `rustc_hir::QPath` instead of a
491493
/// `rustc_hir::Path`.
492494
///
@@ -892,6 +894,7 @@ pub fn is_default_equivalent_call(cx: &LateContext<'_>, repl_func: &Expr<'_>) ->
892894
}
893895

894896
/// Returns true if the expr is equal to `Default::default()` of it's type when evaluated.
897+
///
895898
/// It doesn't cover all cases, for example indirect function calls (some of std
896899
/// functions are supported) but it is the best we have.
897900
pub fn is_default_equivalent(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
@@ -1046,6 +1049,7 @@ impl std::ops::BitOrAssign for CaptureKind {
10461049
}
10471050

10481051
/// Given an expression referencing a local, determines how it would be captured in a closure.
1052+
///
10491053
/// Note as this will walk up to parent expressions until the capture can be determined it should
10501054
/// only be used while making a closure somewhere a value is consumed. e.g. a block, match arm, or
10511055
/// function argument (other than a receiver).
@@ -2348,8 +2352,9 @@ pub fn fn_def_id_with_node_args<'tcx>(
23482352
}
23492353

23502354
/// Returns `Option<String>` where String is a textual representation of the type encapsulated in
2351-
/// the slice iff the given expression is a slice of primitives (as defined in the
2352-
/// `is_recursively_primitive_type` function) and `None` otherwise.
2355+
/// the slice iff the given expression is a slice of primitives.
2356+
///
2357+
/// (As defined in the `is_recursively_primitive_type` function.) Returns `None` otherwise.
23532358
pub fn is_slice_of_primitives(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<String> {
23542359
let expr_type = cx.typeck_results().expr_ty_adjusted(expr);
23552360
let expr_kind = expr_type.kind();

clippy_utils/src/macros.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,11 @@ pub fn first_node_macro_backtrace(cx: &LateContext<'_>, node: &impl HirNode) ->
150150
}
151151

152152
/// If `node` is the "first node" in a macro expansion, returns `Some` with the `ExpnId` of the
153-
/// macro call site (i.e. the parent of the macro expansion). This generally means that `node`
154-
/// is the outermost node of an entire macro expansion, but there are some caveats noted below.
155-
/// This is useful for finding macro calls while visiting the HIR without processing the macro call
156-
/// at every node within its expansion.
153+
/// macro call site (i.e. the parent of the macro expansion).
154+
///
155+
/// This generally means that `node` is the outermost node of an entire macro expansion, but there
156+
/// are some caveats noted below. This is useful for finding macro calls while visiting the HIR
157+
/// without processing the macro call at every node within its expansion.
157158
///
158159
/// If you already have immediate access to the parent node, it is simpler to
159160
/// just check the context of that span directly (e.g. `parent.span.from_expansion()`).

clippy_utils/src/source.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -527,9 +527,10 @@ pub fn snippet_block_with_context<'a>(
527527
(reindent_multiline(snip, true, indent), from_macro)
528528
}
529529

530-
/// Same as `snippet_with_applicability`, but first walks the span up to the given context. This
531-
/// will result in the macro call, rather than the expansion, if the span is from a child context.
532-
/// If the span is not from a child context, it will be used directly instead.
530+
/// Same as `snippet_with_applicability`, but first walks the span up to the given context.
531+
///
532+
/// This will result in the macro call, rather than the expansion, if the span is from a child
533+
/// context. If the span is not from a child context, it will be used directly instead.
533534
///
534535
/// e.g. Given the expression `&vec![]`, getting a snippet from the span for `vec![]` as a HIR node
535536
/// would result in `box []`. If given the context of the address of expression, this function will
@@ -572,9 +573,10 @@ fn snippet_with_context_sess<'a>(
572573
}
573574

574575
/// Walks the span up to the target context, thereby returning the macro call site if the span is
575-
/// inside a macro expansion, or the original span if it is not. Note this will return `None` in the
576-
/// case of the span being in a macro expansion, but the target context is from expanding a macro
577-
/// argument.
576+
/// inside a macro expansion, or the original span if it is not.
577+
///
578+
/// Note this will return `None` in the case of the span being in a macro expansion, but the target
579+
/// context is from expanding a macro argument.
578580
///
579581
/// Given the following
580582
///

clippy_utils/src/ty.rs

+13-7
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,10 @@ pub fn get_type_diagnostic_name(cx: &LateContext<'_>, ty: Ty<'_>) -> Option<Symb
164164
}
165165

166166
/// Returns true if `ty` is a type on which calling `Clone` through a function instead of
167-
/// as a method, such as `Arc::clone()` is considered idiomatic. Lints should avoid suggesting to
168-
/// replace instances of `ty::Clone()` by `.clone()` for objects of those types.
167+
/// as a method, such as `Arc::clone()` is considered idiomatic.
168+
///
169+
/// Lints should avoid suggesting to replace instances of `ty::Clone()` by `.clone()` for objects
170+
/// of those types.
169171
pub fn should_call_clone_as_function(cx: &LateContext<'_>, ty: Ty<'_>) -> bool {
170172
matches!(
171173
get_type_diagnostic_name(cx, ty),
@@ -402,8 +404,10 @@ fn is_normalizable_helper<'tcx>(
402404
}
403405

404406
/// Returns `true` if the given type is a non aggregate primitive (a `bool` or `char`, any
405-
/// integer or floating-point number type). For checking aggregation of primitive types (e.g.
406-
/// tuples and slices of primitive type) see `is_recursively_primitive_type`
407+
/// integer or floating-point number type).
408+
///
409+
/// For checking aggregation of primitive types (e.g. tuples and slices of primitive type) see
410+
/// `is_recursively_primitive_type`
407411
pub fn is_non_aggregate_primitive_type(ty: Ty<'_>) -> bool {
408412
matches!(ty.kind(), ty::Bool | ty::Char | ty::Int(_) | ty::Uint(_) | ty::Float(_))
409413
}
@@ -480,9 +484,10 @@ pub fn match_type(cx: &LateContext<'_>, ty: Ty<'_>, path: &[&str]) -> bool {
480484
}
481485
}
482486

483-
/// Checks if the drop order for a type matters. Some std types implement drop solely to
484-
/// deallocate memory. For these types, and composites containing them, changing the drop order
485-
/// won't result in any observable side effects.
487+
/// Checks if the drop order for a type matters.
488+
///
489+
/// Some std types implement drop solely to deallocate memory. For these types, and composites
490+
/// containing them, changing the drop order won't result in any observable side effects.
486491
pub fn needs_ordered_drop<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
487492
fn needs_ordered_drop_inner<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>, seen: &mut FxHashSet<Ty<'tcx>>) -> bool {
488493
if !seen.insert(ty) {
@@ -1328,6 +1333,7 @@ pub fn deref_chain<'cx, 'tcx>(cx: &'cx LateContext<'tcx>, ty: Ty<'tcx>) -> impl
13281333
}
13291334

13301335
/// Checks if a Ty<'_> has some inherent method Symbol.
1336+
///
13311337
/// This does not look for impls in the type's `Deref::Target` type.
13321338
/// If you need this, you should wrap this call in `clippy_utils::ty::deref_chain().any(...)`.
13331339
pub fn get_adt_inherent_method<'a>(cx: &'a LateContext<'_>, ty: Ty<'_>, method_name: Symbol) -> Option<&'a AssocItem> {

0 commit comments

Comments
 (0)