Skip to content

Commit db6f77f

Browse files
committed
Add arm ids for -Zunpretty=hir,identified
1 parent 254f201 commit db6f77f

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

src/librustc/hir/print.rs

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub enum AnnNode<'a> {
2727
SubItem(hir::HirId),
2828
Expr(&'a hir::Expr),
2929
Pat(&'a hir::Pat),
30+
Arm(&'a hir::Arm),
3031
}
3132

3233
pub enum Nested {
@@ -1821,6 +1822,7 @@ impl<'a> State<'a> {
18211822
self.s.space();
18221823
}
18231824
self.cbox(indent_unit);
1825+
self.ann.pre(self, AnnNode::Arm(arm));
18241826
self.ibox(0);
18251827
self.print_outer_attributes(&arm.attrs);
18261828
let mut first = true;
@@ -1865,6 +1867,7 @@ impl<'a> State<'a> {
18651867
self.s.word(",");
18661868
}
18671869
}
1870+
self.ann.post(self, AnnNode::Arm(arm));
18681871
self.end() // close enclosing cbox
18691872
}
18701873

src/librustc_borrowck/dataflow.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ impl<'tcx, O: DataFlowOperator> pprust::PpAnn for DataFlowContext<'tcx, O> {
109109
pprust::AnnNode::Block(blk) => blk.hir_id.local_id,
110110
pprust::AnnNode::Item(_) |
111111
pprust::AnnNode::SubItem(_) => return,
112-
pprust::AnnNode::Pat(pat) => pat.hir_id.local_id
112+
pprust::AnnNode::Pat(pat) => pat.hir_id.local_id,
113+
pprust::AnnNode::Arm(arm) => arm.hir_id.local_id,
113114
};
114115

115116
if !self.has_bitset_for_local_id(id) {

src/librustc_driver/pretty.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -387,28 +387,28 @@ impl<'hir> pprust_hir::PpAnn for IdentifiedAnnotation<'hir> {
387387
pprust_hir::AnnNode::Name(_) => {},
388388
pprust_hir::AnnNode::Item(item) => {
389389
s.s.space();
390-
s.synth_comment(format!("hir_id: {} hir local_id: {}",
391-
item.hir_id, item.hir_id.local_id.as_u32()))
390+
s.synth_comment(format!("hir_id: {}", item.hir_id));
392391
}
393392
pprust_hir::AnnNode::SubItem(id) => {
394393
s.s.space();
395-
s.synth_comment(id.to_string())
394+
s.synth_comment(id.to_string());
396395
}
397396
pprust_hir::AnnNode::Block(blk) => {
398397
s.s.space();
399-
s.synth_comment(format!("block hir_id: {} hir local_id: {}",
400-
blk.hir_id, blk.hir_id.local_id.as_u32()))
398+
s.synth_comment(format!("block hir_id: {}", blk.hir_id));
401399
}
402400
pprust_hir::AnnNode::Expr(expr) => {
403401
s.s.space();
404-
s.synth_comment(format!("expr hir_id: {} hir local_id: {}",
405-
expr.hir_id, expr.hir_id.local_id.as_u32()));
406-
s.pclose()
402+
s.synth_comment(format!("expr hir_id: {}", expr.hir_id));
403+
s.pclose();
407404
}
408405
pprust_hir::AnnNode::Pat(pat) => {
409406
s.s.space();
410-
s.synth_comment(format!("pat hir_id: {} hir local_id: {}",
411-
pat.hir_id, pat.hir_id.local_id.as_u32()))
407+
s.synth_comment(format!("pat hir_id: {}", pat.hir_id));
408+
}
409+
pprust_hir::AnnNode::Arm(arm) => {
410+
s.s.space();
411+
s.synth_comment(format!("arm hir_id: {}", arm.hir_id));
412412
}
413413
}
414414
}

0 commit comments

Comments
 (0)