about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/array_into_iter.rs
AgeCommit message (Expand)AuthorLines
2024-05-20Implement BOXED_SLICE_INTO_ITERMichael Goulet-144/+0
2024-04-29Remove `extern crate rustc_middle` from numerous crates.Nicholas Nethercote-0/+1
2024-04-29Remove `extern crate rustc_session` from `rustc_lint`.Nicholas Nethercote-0/+1
2024-02-29Mark some once-again-unreachable paths as unreachable.Nicholas Nethercote-9/+5
2024-02-25Don't use `unwrap()` in `ArrayIntoIter` lint when typeck failsGurinder Singh-5/+9
2024-01-23Rename `LintContext::emit_spanned_lint` as `LintContext::emit_span_lint`.Nicholas Nethercote-1/+1
2023-09-22make the reason: field mandatory for @future_incompatible lintsRalf Jung-1/+1
2023-07-12Re-format let-else per rustfmt updateMark Rousskov-1/+1
2023-02-22errors: generate typed identifiers in each crateDavid Wood-2/+4
2023-01-09refactor: cleanupRejyr-2/+0
2023-01-09migrate: `array_into_iter.rs`Rejyr-34/+18
2022-10-23Migrate all diagnosticsNilstrieb-4/+4
2022-10-01Refactor rustc lint APIMaybe Waffle-29/+33
2022-09-05refactor: remove unnecessary variablesTakayuki Maeda-2/+1
2022-09-05separate the receiver from arguments in HIRTakayuki Maeda-2/+2
2022-06-30lint: port array-into-iter diagnosticsDavid Wood-11/+10
2022-06-13remove unnecessary `to_string` and `String::new`Takayuki Maeda-1/+1
2022-04-29errors: `span_suggestion` takes `impl ToString`David Wood-1/+1
2022-01-21Remove a span from hir::ExprKind::MethodCallCameron Steffen-2/+2
2021-12-13Keep info on pre-desugaring expression for better "incorrect `.await`" sugges...Esteban Kuber-1/+1
2021-12-03Use let_else in some more places in rustc_lintest31-3/+2
2021-10-15Don't mark for loop head span with desugaringCameron Steffen-2/+1
2021-10-03Practice diagnostic message conventionHirochika Matsumoto-1/+1
2021-09-20Adjust documentation for compatibility with 2021Mark Rousskov-1/+1
2021-08-30Don't give invalid suggestions in array_into_iter.Mara Bos-1/+1
2021-08-30Upgrade array_into_iter lint to include Deref-to-array types.Mara Bos-23/+29
2021-08-09Link to edition guide instead of issues for 2021 lints.Mara Bos-1/+1
2021-06-26Better suggestion for array_into_iter in for loop.Mara Bos-17/+44
2021-06-26Add new suggestion to array_into_iter lint.Mara Bos-0/+8
2021-06-26Change wording on array_into_iter lint for 1.53 and edition changes.Mara Bos-17/+11
2021-06-25Address PR feedbackRyan Levick-1/+0
2021-06-25Change how edition based future compatibility warnings are handledRyan Levick-5/+4
2020-10-30Implement rustc side of report-future-incompatAaron Hill-1/+4
2020-09-13Auto-generate lint documentation.Eric Huss-0/+25
2020-09-04Change ty.kind to a methodLeSeulArtichaut-4/+4
2020-08-30mv compiler to compiler/mark-0/+97