about summary refs log tree commit diff
path: root/src/librustc_lint
AgeCommit message (Expand)AuthorLines
2019-06-19Auto merge of #61172 - matthewjasper:cleanup-implied-bounds-lint, r=varkorbors-101/+211
2019-06-18Address review commentsMatthew Jasper-19/+20
2019-06-18Improve the explicit_outlives_requirements lintMatthew Jasper-101/+210
2019-06-18Auto merge of #59625 - immunant:copy_variadics_typealias, r=eddybbors-1/+1
2019-06-18rustc: remove leftover lifetimes with no bounds from where clauses.Eduard-Mihai Burtescu-1/+1
2019-06-18rustc: remove 'x: 'y bounds (except from comments/strings).Eduard-Mihai Burtescu-2/+2
2019-06-17Expose `VaListImpl` as the Rust equivalent of `__va_list_tag` and implement C...Andrei Homescu-1/+1
2019-06-17remove _by_hir_id if there is no NodeId counterpartljedrz-3/+3
2019-06-16Separate librustc_lint modulechansuke-23/+22
2019-06-14Unify all uses of 'gcx and 'tcx.Eduard-Mihai Burtescu-4/+4
2019-06-12Run `rustfmt --file-lines ...` for changes from previous commits.Eduard-Mihai Burtescu-5/+6
2019-06-12rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`.Eduard-Mihai Burtescu-4/+4
2019-06-12Fix fallout from `deny(unused_lifetimes)`.Eduard-Mihai Burtescu-3/+3
2019-06-12rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`.Eduard-Mihai Burtescu-4/+4
2019-06-11Auto merge of #61735 - eddyb:must-use-life, r=oli-obkbors-6/+3
2019-06-11Run `rustfmt --file-lines ...` for changes from previous commits.Eduard-Mihai Burtescu-5/+1
2019-06-11rustc_lint: deny(unused_lifetimes).Eduard-Mihai Burtescu-2/+3
2019-06-10Implement RFC 2645 (transparent enums and unions)Michael Bradshaw-11/+23
2019-06-06Some code cleanup and tidy/test fixesVadim Petrochenkov-9/+3
2019-06-06syntax: Use `Token` in `TokenTree::Token`Vadim Petrochenkov-2/+2
2019-06-05Aggregation of drive-by cosmetic changes.Alexander Regueiro-9/+6
2019-06-03Auto merge of #61100 - varkor:must_use-tuple-expr, r=cramertjbors-42/+72
2019-06-03Specify tuple element in lint messagevarkor-3/+6
2019-06-03Fix issue with recursively encountering uninhabited typevarkor-11/+10
2019-06-03Use precise span for must_use tuple componentsvarkor-4/+15
2019-06-03Add test for #[must_use] in tuplesvarkor-2/+2
2019-06-03Warn for #[must_use] in tuplesvarkor-36/+53
2019-05-31Rollup merge of #61342 - memoryruins:ellipsis_inclusive_range_patterns, r=Cen...Pietro Albini-1/+1
2019-05-30Set ellipsis_inclusive_range_patterns lint to warnmemoryruins-1/+1
2019-05-29Introduce and use `SyntaxContext::outer_expn_info()`.Nicholas Nethercote-5/+4
2019-05-27Use `Symbol` equality in `check_ident_token`.Nicholas Nethercote-3/+3
2019-05-23Auto merge of #60740 - petrochenkov:kw, r=nnethercotebors-4/+4
2019-05-22Simplify use of keyword symbolsVadim Petrochenkov-4/+4
2019-05-22Allow null-pointer-optimized enums in FFI if their underlying representation ...Michael Bradshaw-38/+70
2019-05-21Remove impls for `InternedString`/string equality.Nicholas Nethercote-1/+1
2019-05-17Auto merge of #49799 - hdhoang:46205_deny_incoherent_fundamental_impls, r=nik...bors-5/+2
2019-05-13Return a `Symbol` from `name_or_empty` functions.Nicholas Nethercote-1/+1
2019-05-13Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions.Nicholas Nethercote-18/+19
2019-05-11Introduce `hir::Lit` not keeping the original tokenVadim Petrochenkov-5/+5
2019-05-07Implement built-in await syntaxTaylor Cramer-38/+5
2019-05-03rustc: rename hir::def::Def to Res (short for "resolution").Eduard-Mihai Burtescu-15/+14
2019-05-03rustc: use DefKind instead of Def, where possible.Eduard-Mihai Burtescu-5/+5
2019-05-03rustc: factor most DefId-containing variants out of Def and into DefKind.Eduard-Mihai Burtescu-7/+7
2019-04-30Pull out some functors for readabilityvarkor-289/+293
2019-04-30Refactor is_range_literalvarkor-6/+1
2019-04-30Include signed integer types in the lintvarkor-54/+88
2019-04-30Preserve literal suffixesvarkor-1/+17
2019-04-30Place types inside backticksvarkor-6/+6
2019-04-30Suggest using an inclusive range for an overflowing endpointvarkor-15/+61
2019-04-28Implement internal lintsflip1995-1/+3