rust/src/tools/clippy/clippy_lints
Aaron Hill 450ef8613c
Store a Symbol instead of an Ident in VariantDef/FieldDef
The field is also renamed from `ident` to `name. In most cases,
we don't actually need the `Span`. A new `ident` method is added
to `VariantDef` and `FieldDef`, which constructs the full `Ident`
using `tcx.def_ident_span()`. This method is used in the cases
where we actually need an `Ident`.

This makes incremental compilation properly track changes
to the `Span`, without all of the invalidations caused by storing
a `Span` directly via an `Ident`.
2022-01-11 10:16:22 -05:00
..
src Store a Symbol instead of an Ident in VariantDef/FieldDef 2022-01-11 10:16:22 -05:00
Cargo.toml Update pulldown-cmark version in clippy 2021-12-28 16:19:23 +01:00
README.md Add 'src/tools/clippy/' from commit 'd2708873ef' 2020-05-02 09:49:00 +02:00

This crate contains Clippy lints. For the main crate, check GitHub.