aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/body
diff options
context:
space:
mode:
authorPaul Daniel Faria <[email protected]>2020-05-24 21:28:02 +0100
committerPaul Daniel Faria <[email protected]>2020-06-27 15:10:26 +0100
commitb9569886a915f2411adaecbcad28eda8b163c3e3 (patch)
tree291b5a8e121b261fc5c4a3ca3d71feee01befcc9 /crates/ra_hir_def/src/body
parent278cbf12cd0f76fc191d5ce7f130e6245596a578 (diff)
Rename Expr::UnsafeBlock to Expr::Unsafe
Diffstat (limited to 'crates/ra_hir_def/src/body')
-rw-r--r--crates/ra_hir_def/src/body/lower.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_def/src/body/lower.rs b/crates/ra_hir_def/src/body/lower.rs
index 174bbf9f4..6eb72e950 100644
--- a/crates/ra_hir_def/src/body/lower.rs
+++ b/crates/ra_hir_def/src/body/lower.rs
@@ -220,7 +220,7 @@ impl ExprCollector<'_> {
220 } 220 }
221 ast::Effect::Unsafe(_) => { 221 ast::Effect::Unsafe(_) => {
222 let body = self.collect_block_opt(e.block_expr()); 222 let body = self.collect_block_opt(e.block_expr());
223 self.alloc_expr(Expr::UnsafeBlock { body }, syntax_ptr) 223 self.alloc_expr(Expr::Unsafe { body }, syntax_ptr)
224 } 224 }
225 // FIXME: we need to record these effects somewhere... 225 // FIXME: we need to record these effects somewhere...
226 ast::Effect::Async(_) | ast::Effect::Label(_) => { 226 ast::Effect::Async(_) | ast::Effect::Label(_) => {