We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CoverageSpan
1 parent cd50843 commit 514e026Copy full SHA for 514e026
compiler/rustc_mir_transform/src/coverage/spans.rs
@@ -68,12 +68,12 @@ impl CoverageSpans {
68
/// `dominates()` the `BasicBlock`s in this `CoverageSpan`.
69
#[derive(Debug, Clone)]
70
struct CoverageSpan {
71
- pub span: Span,
72
- pub bcb: BasicCoverageBlock,
+ span: Span,
+ bcb: BasicCoverageBlock,
73
/// List of all the original spans from MIR that have been merged into this
74
/// span. Mainly used to precisely skip over gaps when truncating a span.
75
- pub merged_spans: Vec<Span>,
76
- pub is_closure: bool,
+ merged_spans: Vec<Span>,
+ is_closure: bool,
77
}
78
79
impl CoverageSpan {
0 commit comments