about summary refs log tree commit diff
path: root/compiler/rustc_ast/src/visit.rs
AgeCommit message (Expand)AuthorLines
2022-05-05Overhaul `MacArgs::Eq`.Nicholas Nethercote-10/+4
2022-04-30Add `do yeet` expressions to allow experimentation in nightlyScott McMurray-0/+3
2022-04-21rename to `BoundKind` and add commentsSparrowLii-14/+26
2022-04-20Add `BoundCtxt` in `visit_param_bounds` to check questions in boundsSparrowLii-12/+22
2022-04-17Visit generics inside visit_fn.Camille GILLOT-10/+9
2022-04-14Reimplement lowering of sym operands for asm! so that it also works with glob...Amanieu d'Antras-3/+16
2022-03-05Change syntax for TyAlias where clausesJack Huey-3/+3
2022-01-17Add termkadmin-2/+4
2022-01-17add eq constraints on associated constantskadmin-11/+7
2022-01-12Remove deprecated LLVM-style inline assemblyTomasz Miąsko-8/+0
2021-11-28expand: Turn `ast::Crate` into a first class expansion targetVadim Petrochenkov-0/+3
2021-11-07ast: Fix naming conventions in AST structuresVadim Petrochenkov-11/+17
2021-09-09Revert "Implement Anonymous{Struct, Union} in the AST"Felix S. Klock II-3/+0
2021-08-30Add let-else to ASTCameron Steffen-1/+4
2021-08-26Auto merge of #88066 - LeSeulArtichaut:patterns-cleanups, r=nagisabors-5/+2
2021-08-25Various pattern cleanupsLéo Lanteri Thauvin-5/+2
2021-08-24Move `named_asm_labels` to a HIR lintasquared31415-3/+3
2021-08-15Introduce hir::ExprKind::Let - Take 2Caio-2/+2
2021-06-10Add support for using qualified paths with structs in expression and patternRyan Levick-2/+11
2021-05-16Implement Anonymous{Struct, Union} in the ASTjedel1043-0/+3
2021-05-13Add support for const operands and options to global_asm!Amanieu d'Antras-31/+24
2021-04-06Use AnonConst for asm! constantsAmanieu d'Antras-1/+3
2021-03-16ast: Reduce size of `ExprKind` by boxing fields of `ExprKind::Struct`Vadim Petrochenkov-4/+4
2021-03-16ast/hir: Rename field-related structuresVadim Petrochenkov-16/+16
2021-02-18ast: Keep expansion status for out-of-line module itemsVadim Petrochenkov-1/+6
2021-02-18ast: Stop using `Mod` in `Crate`Vadim Petrochenkov-10/+3
2021-02-01Box the biggest ast::ItemKind variantsDániel Buga-9/+9
2021-01-09ast: Remove some indirection layers from values in key-value attributesVadim Petrochenkov-7/+3
2021-01-01first pass at default values for const genericsJulian Knodt-1/+6
2020-12-09Accept arbitrary expressions in key-value attributes at parse timeVadim Petrochenkov-1/+0
2020-11-28Auto merge of #78296 - Aaron1011:fix/stmt-tokens, r=petrochenkovbors-1/+1
2020-11-26Properly handle attributes on statementsAaron Hill-1/+1
2020-11-25ast and parserb-naber-0/+3
2020-11-14Add underscore expressions for destructuring assignmentsFabian Zaiser-0/+1
2020-11-12Rollup merge of #78836 - fanzier:struct-and-slice-destructuring, r=petrochenkovMara Bos-1/+5
2020-11-12Auto merge of #78782 - petrochenkov:nodoctok, r=Aaron1011bors-1/+1
2020-11-11Implement destructuring assignment for structs and slicesFabian Zaiser-1/+5
2020-11-09Do not collect tokens for doc commentsVadim Petrochenkov-1/+1
2020-11-03rustc_ast: `visit_mac` -> `visit_mac_call`Vadim Petrochenkov-8/+8
2020-11-03rustc_ast: Do not panic by default when visiting macro callsVadim Petrochenkov-7/+2
2020-11-03Expand `NtExpr` tokens only in key-value attributesVadim Petrochenkov-25/+16
2020-10-16Add check_generic_arg early passSantiago Pastorino-5/+12
2020-10-16Parse inline const expressionsSantiago Pastorino-0/+1
2020-09-10Attach `TokenStream` to `ast::Visibility`Aaron Hill-1/+1
2020-08-30Factor out StmtKind::MacCall fields into `MacCallStmt` structAaron Hill-1/+1
2020-08-30mv compiler to compiler/mark-0/+913