summary refs log tree commit diff
path: root/compiler/rustc_ast/src/visit.rs
AgeCommit message (Expand)AuthorLines
2023-01-12parse const closuresDeadbeef-0/+1
2022-12-28Rename `Rptr` to `Ref` in AST and HIRNilstrieb-3/+3
2022-12-03Rollup merge of #104199 - SarthakSingh31:issue-97417-1, r=cjgillotMatthias Krüger-0/+1
2022-12-01rustc_ast_lowering: Stop lowering imports into multiple itemsVadim Petrochenkov-1/+1
2022-11-28Keep track of the start of the argument block of a closureSarthak Singh-0/+1
2022-11-23Suggest `.clone()` or `ref binding` on E0382Esteban Küber-1/+1
2022-11-22Split `MacArgs` in two.Nicholas Nethercote-6/+6
2022-11-21Remove `ref` patterns from `rustc_ast`Maybe Waffle-138/+128
2022-11-17Box `ExprKind::{Closure,MethodCall}`, and `QSelf` in expressions, types, and ...Nicholas Nethercote-5/+13
2022-11-14Auto merge of #103858 - Mark-Simulacrum:bump-bootstrap, r=pietroalbinibors-1/+1
2022-11-11Introduce `ExprKind::IncludedBytes`clubby789-1/+1
2022-11-06cfg-step codeMark Rousskov-1/+1
2022-10-23Workaround unstable stmt_expr_attributes for method receiver expressions.Camille GILLOT-0/+5
2022-10-10Rollup merge of #102868 - compiler-errors:rename-assoc-tyalias-to-ty, r=TaKO8KiDylan DPC-1/+1
2022-10-10Rename AssocItemKind::TyAlias to AssocItemKind::TypeMichael Goulet-1/+1
2022-10-09fixup lint nameMaybe Waffle-1/+1
2022-10-09allow or avoid for loops over option in compiler and testsMaybe Waffle-8/+6
2022-09-12Remove unused span argument from `walk_fn`.Nicholas Nethercote-3/+3
2022-09-12Remove `path_span` argument to the `visit_path_segment` methods.Nicholas Nethercote-14/+10
2022-08-16Shrink `ast::Attribute`.Nicholas Nethercote-1/+1
2022-08-11Rollup merge of #100392 - nnethercote:simplify-visitors, r=cjgillotMatthias Krüger-23/+9
2022-08-11Rollup merge of #100350 - jhpratt:stringify-vis, r=cjgillotMatthias Krüger-1/+1
2022-08-11Simplify `rustc_ast::visit::Visitor::visit_poly_trait_ref`.Nicholas Nethercote-8/+5
2022-08-11Simplify `rustc_ast::visit::Visitor::visit_enum_def`.Nicholas Nethercote-15/+4
2022-08-10Do not consider method call receiver as an argument in AST.Camille GILLOT-1/+2
2022-08-09Stringify non-shorthand visibility correctlyJacob Pratt-1/+1
2022-07-29Remove `visit_name` from the AST visitor.Nicholas Nethercote-16/+3
2022-07-12Lower closure binders to hir & properly check themMaybe Waffle-1/+1
2022-07-12Parse closure bindersMaybe Waffle-6/+19
2022-05-20Introduce LifetimeCtxt.Camille GILLOT-5/+17
2022-05-07Permit asm_const and asm_sym to reference outer generic paramsGary Guo-2/+2
2022-05-04Auto merge of #96546 - nnethercote:overhaul-MacArgs, r=petrochenkovbors-10/+4
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