about summary refs log tree commit diff
path: root/compiler/rustc_ast_lowering/src
AgeCommit message (Expand)AuthorLines
2024-02-15Add an `ErrorGuaranteed` to `ast::TyKind::Err`.Nicholas Nethercote-1/+2
2024-02-15Reinstate some delayed bugs.Nicholas Nethercote-1/+3
2024-02-14Use fewer delayed bugs.Nicholas Nethercote-7/+3
2024-02-12Lowering field access for anonymous adtsFrank King-16/+11
2024-02-12Lower anonymous structs or unions to HIRFrank King-12/+47
2024-02-10Remove unused fnMichael Goulet-6/+0
2024-02-10Add a helpful suggestionMichael Goulet-33/+32
2024-02-10No more associated type bounds in dyn traitMichael Goulet-56/+8
2024-02-10Rollup merge of #120850 - petrochenkov:empimpres, r=cjgillotMatthias Krüger-1/+6
2024-02-10Rollup merge of #120584 - compiler-errors:u, r=lcnrMatthias Krüger-13/+11
2024-02-09ast_lowering: Fix regression in `use ::{}` imports.Vadim Petrochenkov-1/+6
2024-02-09Rollup merge of #120693 - nnethercote:invert-diagnostic-lints, r=davidtwcoMatthias Krüger-2/+0
2024-02-09Don't unnecessarily lower associated type bounds to impl traitMichael Goulet-13/+11
2024-02-08Rollup merge of #120750 - compiler-errors:itctx-by-val, r=cjgillotMatthias Krüger-92/+90
2024-02-08Rollup merge of #120734 - nnethercote:SubdiagnosticMessageOp, r=compiler-errorsMatthias Krüger-9/+5
2024-02-08Add `SubdiagnosticMessageOp` as a trait alias.Nicholas Nethercote-9/+5
2024-02-07No need to take ImplTraitContext by refMichael Goulet-92/+90
2024-02-07hir: Add some FIXMEs for future workVadim Petrochenkov-0/+1
2024-02-07hir: Make sure all `HirId`s have corresponding HIR `Node`sVadim Petrochenkov-7/+38
2024-02-06Rollup merge of #120609 - petrochenkov:nousestem2, r=compiler-errorsMatthias Krüger-9/+23
2024-02-06Auto merge of #120361 - compiler-errors:async-closures, r=oli-obkbors-36/+25
2024-02-06More comments, final tweaksMichael Goulet-0/+3
2024-02-06Teach typeck/borrowck/solvers how to deal with async closuresMichael Goulet-0/+8
2024-02-06Make async closures directly lower to ClosureKind::CoroutineClosureMichael Goulet-32/+9
2024-02-06Make sure that async closures (and fns) only capture their parent callable's ...Michael Goulet-4/+5
2024-02-06Invert diagnostic lints.Nicholas Nethercote-2/+0
2024-02-06Auto merge of #120392 - compiler-errors:async-bound-modifier, r=davidtwco,fmeasebors-21/+128
2024-02-03hir: Remove the generic type parameter from `MaybeOwned`Vadim Petrochenkov-7/+4
2024-02-03hir: Stop keeping prefixes for most of `use` list stemsVadim Petrochenkov-9/+23
2024-01-31Error on incorrect item kind in async boundMichael Goulet-9/+35
2024-01-31Add async bound modifier to enable async Fn boundsMichael Goulet-20/+101
2024-01-29Rollup merge of #120428 - petrochenkov:somehir2, r=compiler-errorsDylan DPC-2/+4
2024-01-29Stop using `String` for error codes.Nicholas Nethercote-10/+10
2024-01-28hir: Use `InferArg` in `ArrayLen::Infer`Vadim Petrochenkov-1/+4
2024-01-28hir: Remove unnecessary `HirId` from `hir::Let`Vadim Petrochenkov-1/+0
2024-01-25Remove unused featuresclubby789-2/+0
2024-01-19Pack the u128 in LitKind::IntJosh Stone-2/+8
2024-01-19Auto merge of #120006 - cjgillot:no-hir-owner, r=wesleywiserbors-3/+3
2024-01-18Rollup merge of #119978 - compiler-errors:async-closure-captures, r=oli-obkMatthias Krüger-202/+215
2024-01-17Add `PatKind::Err`Lieselotte-0/+1
2024-01-16Simplify BodyId hashing.Camille GILLOT-3/+3
2024-01-16Async closures will move params into the future alwaysMichael Goulet-43/+33
2024-01-16Introduce helper that deals with moving async args into the coroutineMichael Goulet-170/+193
2024-01-13Add check for ui_testing via promoting parameters from `ParseSess` to `Session`George-lewis-13/+8
2024-01-12Delegation implementation: step 1Bryanskiy-4/+386
2024-01-09Add error code for missing base expression in struct update syntaxclubby789-2/+2
2024-01-08Rollup merge of #119705 - fmease:tilde-const-assoc-fns-trait-impls, r=compile...Matthias Krüger-13/+16
2024-01-07Split note, fix const/static impl trait errorMichael Goulet-5/+10
2024-01-07effects: support ~const in assoc fns in trait implsLeón Orell Valerian Liehr-13/+16
2024-01-07Inline some helpers no longer needed due to RPITIT being stableMichael Goulet-47/+29