diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-03-03 18:41:47 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-03-03 22:48:42 +1100 |
| commit | c3b904704031047ef9e1f7906d3faee15778ffe5 (patch) | |
| tree | c5effad359313654e966bdac21a1b6767010c94f /src/libsyntax/visit.rs | |
| parent | 3f3425a5550e7d8b58d782425b09eab20b91c1c0 (diff) | |
syntax: make match arms store the expr directly.
Previously `ast::Arm` was always storing a single `ast::Expr` wrapped in an `ast::Block` (for historical reasons, AIUI), so we might as just store that expr directly. Closes #3085.
Diffstat (limited to 'src/libsyntax/visit.rs')
| -rw-r--r-- | src/libsyntax/visit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/visit.rs b/src/libsyntax/visit.rs index 2edfd367f4e..d25d1a8cc35 100644 --- a/src/libsyntax/visit.rs +++ b/src/libsyntax/visit.rs @@ -765,5 +765,5 @@ pub fn walk_arm<E: Clone, V: Visitor<E>>(visitor: &mut V, arm: &Arm, env: E) { visitor.visit_pat(*pattern, env.clone()) } walk_expr_opt(visitor, arm.guard, env.clone()); - visitor.visit_block(arm.body, env) + visitor.visit_expr(arm.body, env) } |
