diff options
| author | bors <bors@rust-lang.org> | 2023-01-13 05:04:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-01-13 05:04:48 +0000 |
| commit | 279f1c9d8c26a8d227ae8ab806d262bb784b251b (patch) | |
| tree | 5df99150626d3bf61de660e12ab81cbc70bc009c /compiler/rustc_ast/src | |
| parent | bfffe406fbcabb37b95779f2d252c4a277191e0d (diff) | |
| parent | 42a50bac319c0fc4fedf295fb1e606f015c48bb6 (diff) | |
| download | rust-279f1c9d8c26a8d227ae8ab806d262bb784b251b.tar.gz rust-279f1c9d8c26a8d227ae8ab806d262bb784b251b.zip | |
Auto merge of #106004 - fee1-dead-contrib:const-closures, r=oli-obk
Const closures cc https://github.com/rust-lang/rust/issues/106003
Diffstat (limited to 'compiler/rustc_ast/src')
| -rw-r--r-- | compiler/rustc_ast/src/ast.rs | 1 | ||||
| -rw-r--r-- | compiler/rustc_ast/src/mut_visit.rs | 2 | ||||
| -rw-r--r-- | compiler/rustc_ast/src/visit.rs | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_ast/src/ast.rs b/compiler/rustc_ast/src/ast.rs index e656fb3740b..7de594719dd 100644 --- a/compiler/rustc_ast/src/ast.rs +++ b/compiler/rustc_ast/src/ast.rs @@ -1307,6 +1307,7 @@ impl Expr { pub struct Closure { pub binder: ClosureBinder, pub capture_clause: CaptureBy, + pub constness: Const, pub asyncness: Async, pub movability: Movability, pub fn_decl: P<FnDecl>, diff --git a/compiler/rustc_ast/src/mut_visit.rs b/compiler/rustc_ast/src/mut_visit.rs index c572171e8f4..77f342d1eb3 100644 --- a/compiler/rustc_ast/src/mut_visit.rs +++ b/compiler/rustc_ast/src/mut_visit.rs @@ -1362,6 +1362,7 @@ pub fn noop_visit_expr<T: MutVisitor>( ExprKind::Closure(box Closure { binder, capture_clause: _, + constness, asyncness, movability: _, fn_decl, @@ -1370,6 +1371,7 @@ pub fn noop_visit_expr<T: MutVisitor>( fn_arg_span: _, }) => { vis.visit_closure_binder(binder); + visit_constness(constness, vis); vis.visit_asyncness(asyncness); vis.visit_fn_decl(fn_decl); vis.visit_expr(body); diff --git a/compiler/rustc_ast/src/visit.rs b/compiler/rustc_ast/src/visit.rs index df7145a722a..e8823eff83a 100644 --- a/compiler/rustc_ast/src/visit.rs +++ b/compiler/rustc_ast/src/visit.rs @@ -836,6 +836,7 @@ pub fn walk_expr<'a, V: Visitor<'a>>(visitor: &mut V, expression: &'a Expr) { binder, capture_clause: _, asyncness: _, + constness: _, movability: _, fn_decl, body, |
