Skip to content

Commit f4153f4

Browse files
committed
internal: better print style for hir
1 parent 994a9b8 commit f4153f4

File tree

1 file changed

+16
-2
lines changed
  • src/tools/rust-analyzer/crates/hir-def/src/body

1 file changed

+16
-2
lines changed

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

+16-2
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,36 @@ pub(super) fn print_body_hir(db: &dyn DefDatabase, body: &Body, owner: DefWithBo
4848
let mut p = Printer { db, body, buf: header, indent_level: 0, needs_indent: false };
4949
if let DefWithBodyId::FunctionId(it) = owner {
5050
p.buf.push('(');
51-
let params = &db.function_data(it).params;
52-
let mut params = params.iter();
51+
let function_data = &db.function_data(it);
52+
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);
5555
p.buf.push(':');
56+
p.buf.push(' ');
5657
if let Some(ty) = params.next() {
5758
p.print_type_ref(ty);
59+
p.buf.push(',');
60+
p.buf.push(' ');
5861
}
5962
}
6063
body.params.iter().zip(params).for_each(|(&param, ty)| {
6164
p.print_pat(param);
6265
p.buf.push(':');
66+
p.buf.push(' ');
6367
p.print_type_ref(ty);
68+
p.buf.push(',');
69+
p.buf.push(' ');
6470
});
71+
// remove the last ", " in param list
72+
p.buf.truncate(p.buf.len() - 2);
6573
p.buf.push(')');
6674
p.buf.push(' ');
75+
// return type
76+
p.buf.push('-');
77+
p.buf.push('>');
78+
p.buf.push(' ');
79+
p.print_type_ref(ret_type);
80+
p.buf.push(' ');
6781
}
6882
p.print_expr(body.body_expr);
6983
if matches!(owner, DefWithBodyId::StaticId(_) | DefWithBodyId::ConstId(_)) {

0 commit comments

Comments
 (0)