diff options
author | Aleksey Kladov <[email protected]> | 2018-12-21 23:23:25 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-21 23:23:25 +0000 |
commit | 8e056ef0428190a1abf363a2409e40751a02ee5b (patch) | |
tree | d2c4df23f42f064c4b7d7ffcf737da2598d69582 /crates/ra_hir/src/function | |
parent | 97cb463c9be3c21931d0e284603238ce3cb02b2a (diff) |
debug pring
Diffstat (limited to 'crates/ra_hir/src/function')
-rw-r--r-- | crates/ra_hir/src/function/scope.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_hir/src/function/scope.rs b/crates/ra_hir/src/function/scope.rs index d12f1781e..77be25f1a 100644 --- a/crates/ra_hir/src/function/scope.rs +++ b/crates/ra_hir/src/function/scope.rs | |||
@@ -209,7 +209,6 @@ fn compute_block_scopes(block: ast::Block, scopes: &mut FnScopes, mut scope: Sco | |||
209 | } | 209 | } |
210 | } | 210 | } |
211 | if let Some(expr) = block.expr() { | 211 | if let Some(expr) = block.expr() { |
212 | eprintln!("{:?}", expr); | ||
213 | scopes.set_scope(expr.syntax(), scope); | 212 | scopes.set_scope(expr.syntax(), scope); |
214 | compute_expr_scopes(expr, scopes, scope); | 213 | compute_expr_scopes(expr, scopes, scope); |
215 | } | 214 | } |