diff options
author | Aleksey Kladov <[email protected]> | 2019-09-02 19:23:19 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-09-02 19:23:19 +0100 |
commit | 5e3f291195b580580be7ce5622f54ebca75fb9f0 (patch) | |
tree | 772693eb44bde1fac1b9292456e1fa6e056bdb1f /crates/ra_hir/src/ty | |
parent | dcf8e895038a7677711b8168ee12e1d47f6018bc (diff) |
fix hir for new block syntax
Diffstat (limited to 'crates/ra_hir/src/ty')
-rw-r--r-- | crates/ra_hir/src/ty/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/ty/tests.rs b/crates/ra_hir/src/ty/tests.rs index b034fd59e..d344ab12e 100644 --- a/crates/ra_hir/src/ty/tests.rs +++ b/crates/ra_hir/src/ty/tests.rs | |||
@@ -3582,7 +3582,7 @@ fn infer(content: &str) -> String { | |||
3582 | 3582 | ||
3583 | for (expr, ty) in inference_result.type_of_expr.iter() { | 3583 | for (expr, ty) in inference_result.type_of_expr.iter() { |
3584 | let syntax_ptr = match body_source_map.expr_syntax(expr) { | 3584 | let syntax_ptr = match body_source_map.expr_syntax(expr) { |
3585 | Some(sp) => sp, | 3585 | Some(sp) => sp.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr()), |
3586 | None => continue, | 3586 | None => continue, |
3587 | }; | 3587 | }; |
3588 | types.push((syntax_ptr, ty)); | 3588 | types.push((syntax_ptr, ty)); |