summary refs log tree commit diff
path: root/compiler/rustc_hir/src/def.rs
AgeCommit message (Expand)AuthorLines
2023-01-17Remove double spaces after dots in commentsMaybe Waffle-1/+1
2023-01-05Fix `uninlined_format_args` for some compiler cratesnils-2/+1
2022-11-21Unreserve braced enum variants in value namespaceVadim Petrochenkov-18/+4
2022-10-11rustc_hir: Less error-prone methods for accessing `PartialRes` resolutionVadim Petrochenkov-0/+10
2022-09-29Shrink `hir::def::Res`.Nicholas Nethercote-50/+65
2022-09-09Address nitsMichael Goulet-2/+2
2022-09-09RPITIT placeholder itemsMichael Goulet-0/+5
2022-09-08remove unnecessary `PartialOrd` and `Ord`Takayuki Maeda-1/+1
2022-09-05Add some blank lines to the definition of `Res`.Nicholas Nethercote-1/+5
2022-08-28Remove `register_attr` featureYuki Okushi-8/+2
2022-07-26Replace LifetimeRes::Anonymous by LifetimeRes::Infer.Camille GILLOT-5/+2
2022-07-26Remove the distinction between LifetimeName::Implicit and LifetimeName::Under...Camille GILLOT-2/+0
2022-07-25Report elision failures on the AST.Camille GILLOT-1/+1
2022-07-20Introduce AnonymousLifetimeRib::Elided and use it for implied 'static.Camille GILLOT-1/+1
2022-06-21Always create parameters for functions-like types.Camille GILLOT-2/+1
2022-06-19Leave the responsibility to create `Fresh` lifetimes to lowering.Camille GILLOT-1/+3
2022-06-14Make ResolverAstLowering a struct.Camille GILLOT-1/+41
2022-05-31Apply track_caller to closure on `expect_non_local()`Yuki Okushi-1/+4
2022-05-30Default methods of traits are also AssocFn defs as they essentially desugar t...Oli Scherer-0/+1
2022-05-09reviewlcnr-0/+37
2022-05-07Auto merge of #96094 - Elliot-Roberts:fix_doctests, r=compiler-errorsbors-0/+1
2022-05-03Auto merge of #95380 - compiler-errors:unit-destructure-assign, r=nikomatsakisbors-0/+5
2022-05-02fix most compiler/ doctestsElliot Roberts-0/+1
2022-04-17Stop using CRATE_DEF_INDEX.Camille GILLOT-4/+2
2022-04-10Avoid accessing HIR from MIR queries.Camille GILLOT-0/+8
2022-04-06Fix unit struct/enum variant in destructuring assignmentMichael Goulet-0/+5
2022-03-29Remember mutability in `DefKind::Static`.Camille GILLOT-3/+3
2022-02-20Make node_id_to_hir_id owner-local.Camille GILLOT-0/+13
2022-02-12trailing whitespaceEllen-6/+6
2022-02-12change docs on `Res::SelfTy`Ellen-27/+35
2022-02-12change to a struct variantEllen-9/+9
2021-12-13Remove invalid doc links.Amanieu d'Antras-1/+1
2021-12-04Use IntoIterator for array impl everywhere.Mara Bos-3/+3
2021-11-07Give inline const separate DefKindGary Guo-1/+6
2021-09-10rustc: Remove local variable IDs from `Export`sVadim Petrochenkov-0/+5
2021-08-30remove lazy_normalization_constsEllen-1/+1
2021-07-25clippy::filter_map_identityMatthias Krüger-1/+1
2021-04-07Document `Res` and its friendsCamelid-13/+142
2021-01-17resolve: Reject ambiguity built-in attr vs different built-in attrVadim Petrochenkov-3/+4
2020-11-19resolve: Introduce a separate `NonMacroAttrKind` for legacy derive helpersVadim Petrochenkov-2/+9
2020-11-11Implement destructuring assignment for structs and slicesFabian Zaiser-0/+5
2020-10-23add tests for self with const paramsBastian Kauschke-1/+3
2020-10-03Replace some once(x).chain(once(y)) with [x, y] IntoIterScott McMurray-3/+1
2020-09-13review, improve note spanBastian Kauschke-4/+6
2020-09-13allow concrete self types in constsBastian Kauschke-1/+8
2020-09-05[WIP] give better errors for broken intra doc linksJoshua Nelson-0/+9
2020-08-30mv compiler to compiler/mark-0/+469