File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
compiler/rustc_mir_transform/src/coverage Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -65,14 +65,14 @@ impl CoverageSpans {
65
65
/// `dominates()` the `BasicBlock`s in this `CoverageSpan`.
66
66
#[ derive( Debug , Clone ) ]
67
67
struct CoverageSpan {
68
- pub span : Span ,
69
- pub expn_span : Span ,
70
- pub current_macro_or_none : OnceCell < Option < Symbol > > ,
71
- pub bcb : BasicCoverageBlock ,
68
+ span : Span ,
69
+ expn_span : Span ,
70
+ current_macro_or_none : OnceCell < Option < Symbol > > ,
71
+ bcb : BasicCoverageBlock ,
72
72
/// List of all the original spans from MIR that have been merged into this
73
73
/// span. Mainly used to precisely skip over gaps when truncating a span.
74
- pub merged_spans : Vec < Span > ,
75
- pub is_closure : bool ,
74
+ merged_spans : Vec < Span > ,
75
+ is_closure : bool ,
76
76
}
77
77
78
78
impl CoverageSpan {
You can’t perform that action at this time.
0 commit comments