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