Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/src/ast/edit.rs')
-rw-r--r--crates/syntax/src/ast/edit.rs24
1 files changed, 12 insertions, 12 deletions
diff --git a/crates/syntax/src/ast/edit.rs b/crates/syntax/src/ast/edit.rs
index d97fdec524..9b30642fe4 100644
--- a/crates/syntax/src/ast/edit.rs
+++ b/crates/syntax/src/ast/edit.rs
@@ -89,11 +89,11 @@ impl IndentLevel {
_ => None,
});
for token in tokens {
- if let Some(ws) = ast::Whitespace::cast(token) {
- if ws.text().contains('\n') {
- let new_ws = make::tokens::whitespace(&format!("{}{self}", ws.syntax()));
- ted::replace(ws.syntax(), &new_ws);
- }
+ if let Some(ws) = ast::Whitespace::cast(token)
+ && ws.text().contains('\n')
+ {
+ let new_ws = make::tokens::whitespace(&format!("{}{self}", ws.syntax()));
+ ted::replace(ws.syntax(), &new_ws);
}
}
}
@@ -122,13 +122,13 @@ impl IndentLevel {
_ => None,
});
for token in tokens {
- if let Some(ws) = ast::Whitespace::cast(token) {
- if ws.text().contains('\n') {
- let new_ws = make::tokens::whitespace(
- &ws.syntax().text().replace(&format!("\n{self}"), "\n"),
- );
- ted::replace(ws.syntax(), &new_ws);
- }
+ if let Some(ws) = ast::Whitespace::cast(token)
+ && ws.text().contains('\n')
+ {
+ let new_ws = make::tokens::whitespace(
+ &ws.syntax().text().replace(&format!("\n{self}"), "\n"),
+ );
+ ted::replace(ws.syntax(), &new_ws);
}
}
}