Skip to content

Commit b45cf63

Browse files
committedJun 9, 2024
minor: use push_str instead
1 parent 6e08590 commit b45cf63

File tree

1 file changed

+5
-12
lines changed
  • src/tools/rust-analyzer/crates/hir-def/src/body

1 file changed

+5
-12
lines changed
 

‎src/tools/rust-analyzer/crates/hir-def/src/body/pretty.rs

+5-12
Original file line numberDiff line numberDiff line change
@@ -52,32 +52,25 @@ pub(super) fn print_body_hir(db: &dyn DefDatabase, body: &Body, owner: DefWithBo
5252
let (mut params, ret_type) = (function_data.params.iter(), &function_data.ret_type);
5353
if let Some(self_param) = body.self_param {
5454
p.print_binding(self_param);
55-
p.buf.push(':');
56-
p.buf.push(' ');
55+
p.buf.push_str(": ");
5756
if let Some(ty) = params.next() {
5857
p.print_type_ref(ty);
59-
p.buf.push(',');
60-
p.buf.push(' ');
58+
p.buf.push_str(", ");
6159
}
6260
}
6361
body.params.iter().zip(params).for_each(|(&param, ty)| {
6462
p.print_pat(param);
65-
p.buf.push(':');
66-
p.buf.push(' ');
63+
p.buf.push_str(": ");
6764
p.print_type_ref(ty);
68-
p.buf.push(',');
69-
p.buf.push(' ');
65+
p.buf.push_str(", ");
7066
});
7167
// remove the last ", " in param list
7268
if body.params.len() > 0 {
7369
p.buf.truncate(p.buf.len() - 2);
7470
}
7571
p.buf.push(')');
76-
p.buf.push(' ');
7772
// return type
78-
p.buf.push('-');
79-
p.buf.push('>');
80-
p.buf.push(' ');
73+
p.buf.push_str(" -> ");
8174
p.print_type_ref(ret_type);
8275
p.buf.push(' ');
8376
}

0 commit comments

Comments
 (0)