aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src
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
parent278cbf12cd0f76fc191d5ce7f130e6245596a578 (diff)
Rename Expr::UnsafeBlock to Expr::Unsafe
Diffstat (limited to 'crates/ra_hir_def/src')
-rw-r--r--crates/ra_hir_def/src/body/lower.rs2
-rw-r--r--crates/ra_hir_def/src/expr.rs4
2 files changed, 3 insertions, 3 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(_) => {
diff --git a/crates/ra_hir_def/src/expr.rs b/crates/ra_hir_def/src/expr.rs
index f5e3e74fb..e41cfc16b 100644
--- a/crates/ra_hir_def/src/expr.rs
+++ b/crates/ra_hir_def/src/expr.rs
@@ -150,7 +150,7 @@ pub enum Expr {
150 Tuple { 150 Tuple {
151 exprs: Vec<ExprId>, 151 exprs: Vec<ExprId>,
152 }, 152 },
153 UnsafeBlock { 153 Unsafe {
154 body: ExprId, 154 body: ExprId,
155 }, 155 },
156 Array(Array), 156 Array(Array),
@@ -250,7 +250,7 @@ impl Expr {
250 f(*expr); 250 f(*expr);
251 } 251 }
252 } 252 }
253 Expr::TryBlock { body } | Expr::UnsafeBlock { body } => f(*body), 253 Expr::TryBlock { body } | Expr::Unsafe { body } => f(*body),
254 Expr::Loop { body, .. } => f(*body), 254 Expr::Loop { body, .. } => f(*body),
255 Expr::While { condition, body, .. } => { 255 Expr::While { condition, body, .. } => {
256 f(*condition); 256 f(*condition);