diff options
author | Aleksey Kladov <[email protected]> | 2020-07-31 16:08:58 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-07-31 16:08:58 +0100 |
commit | 633aace41108b74fe6c93c5ab04272067db033f9 (patch) | |
tree | d071a03fb2c191629da532c14c002c30328d1e04 /crates/ra_hir_expand/src | |
parent | bfcee63e75d6feb21cafbdf3887e0efd508b6b2e (diff) |
Rename LambdaExpr -> ClosureExpr
Diffstat (limited to 'crates/ra_hir_expand/src')
-rw-r--r-- | crates/ra_hir_expand/src/db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_expand/src/db.rs b/crates/ra_hir_expand/src/db.rs index 41df66696..f3b7cd492 100644 --- a/crates/ra_hir_expand/src/db.rs +++ b/crates/ra_hir_expand/src/db.rs | |||
@@ -379,7 +379,7 @@ fn to_fragment_kind(db: &dyn AstDatabase, id: MacroCallId) -> FragmentKind { | |||
379 | 379 | ||
380 | FOR_EXPR => FragmentKind::Expr, | 380 | FOR_EXPR => FragmentKind::Expr, |
381 | PATH_EXPR => FragmentKind::Expr, | 381 | PATH_EXPR => FragmentKind::Expr, |
382 | LAMBDA_EXPR => FragmentKind::Expr, | 382 | CLOSURE_EXPR => FragmentKind::Expr, |
383 | CONDITION => FragmentKind::Expr, | 383 | CONDITION => FragmentKind::Expr, |
384 | BREAK_EXPR => FragmentKind::Expr, | 384 | BREAK_EXPR => FragmentKind::Expr, |
385 | RETURN_EXPR => FragmentKind::Expr, | 385 | RETURN_EXPR => FragmentKind::Expr, |