about summary refs log tree commit diff
path: root/compiler/rustc_ast_lowering/src/item.rs
AgeCommit message (Expand)AuthorLines
2024-09-11Also fix if in elseMichael Goulet-6/+4
2024-08-27Rollup merge of #129626 - compiler-errors:explicit-named, r=fmeaseMatthias Krüger-12/+1
2024-08-27Rollup merge of #126013 - nnethercote:unreachable_pub, r=UrgauMatthias Krüger-1/+1
2024-08-26Remove ParamMode::ExplicitNamedMichael Goulet-12/+1
2024-08-21Simplify some redundant field namesMichael Goulet-1/+1
2024-08-16Use FnSig instead of raw FnDecl for ForeignItemKind::FnMichael Goulet-7/+17
2024-08-16Add `warn(unreachable_pub)` to `rustc_ast_lowering`.Nicholas Nethercote-1/+1
2024-07-31minor `effects` cleanupsDeadbeef-1/+0
2024-07-29Reformat `use` declarations.Nicholas Nethercote-5/+6
2024-07-26Rollup merge of #128226 - oli-obk:option_vs_empty_slice, r=petrochenkovTrevor Gross-3/+3
2024-07-26Remove redundant option that was just encoding that a slice was emptyOli Scherer-3/+3
2024-07-25Support ?Trait bounds in supertraits and dyn Trait under a feature gateBryanskiy-2/+8
2024-07-16Add `ConstArgKind::Path` and make `ConstArg` its own HIR nodeNoah Lev-2/+7
2024-07-16Use `ConstArg` for const param defaultsNoah Lev-9/+13
2024-07-16Setup ast_lowering functions for `ConstArg`Noah Lev-1/+1
2024-07-03Add `constness` to `TraitDef`Deadbeef-3/+6
2024-06-28implement new effects desugaringDeadbeef-37/+74
2024-06-27Tighten spans for async blocksMichael Goulet-8/+8
2024-06-20StaticForeignItem and StaticItem are the sameMichael Goulet-6/+1
2024-06-19Rollup merge of #125078 - linyihai:issue-124496, r=compiler-errors许杰友 Jieyou Xu (Joe)-1/+9
2024-06-05fix: break inside async closure has incorrect span for enclosing closureLin Yihai-1/+9
2024-06-04Add safe/unsafe to static inside extern blocksSantiago Pastorino-1/+1
2024-06-04Handle safety keyword for extern block inner itemsSantiago Pastorino-8/+17
2024-05-17Rename Unsafe to SafetySantiago Pastorino-12/+12
2024-05-15delegation: Implement list delegationVadim Petrochenkov-6/+14
2024-05-08Rollup merge of #123344 - pietroalbini:pa-unused-imports, r=NilstriebMatthias Krüger-3/+3
2024-05-04Auto merge of #124401 - oli-obk:some_hir_cleanups, r=cjgillotbors-2/+3
2024-04-30Rollup merge of #124511 - nnethercote:rm-extern-crates, r=fee1-deadMatthias Krüger-0/+1
2024-04-30Remove `extern crate tracing` from numerous crates.Nicholas Nethercote-0/+1
2024-04-29Add StaticForeignItem and use it on ForeignItemKindSantiago Pastorino-4/+4
2024-04-26Move `ConstArg::span` to `AnonConst::span`Oli Scherer-0/+1
2024-04-26put `hir::AnonConst` on the hir arenaOli Scherer-2/+2
2024-04-24Auto merge of #122500 - petrochenkov:deleg, r=fmeasebors-1/+1
2024-04-24Error on using `yield` without also using `#[coroutine]` on the closureOli Scherer-1/+1
2024-04-23delegation: Support async, const, extern "ABI" and C-variadic functionsVadim Petrochenkov-1/+1
2024-04-17Rename `BindingAnnotation` to `BindingMode`Jules Bertholet-4/+2
2024-04-14store the span of the nested part of the use tree in the astPietro Albini-3/+3
2024-04-03rustc_index: Add a `ZERO` constant to index typesVadim Petrochenkov-2/+2
2024-03-22Update (doc) commentsLeón Orell Valerian Liehr-2/+2
2024-03-16Delegation: fix ICE on duplicated associative itemsBryanskiy-8/+6
2024-03-08Simplify ImplTraitContextMichael Goulet-2/+4
2024-03-08Make TAITs capture all higher-ranked lifetimes in scopeMichael Goulet-2/+12
2024-02-29AST: Refactor type alias where clausesLeón Orell Valerian Liehr-9/+10
2024-02-14Use fewer delayed bugs.Nicholas Nethercote-1/+1
2024-02-12Lower anonymous structs or unions to HIRFrank King-1/+4
2024-02-09ast_lowering: Fix regression in `use ::{}` imports.Vadim Petrochenkov-1/+6
2024-02-07No need to take ImplTraitContext by refMichael Goulet-41/+39
2024-02-06Rollup merge of #120609 - petrochenkov:nousestem2, r=compiler-errorsMatthias Krüger-6/+13
2024-02-06Auto merge of #120361 - compiler-errors:async-closures, r=oli-obkbors-7/+6
2024-02-06Make async closures directly lower to ClosureKind::CoroutineClosureMichael Goulet-3/+1