File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ impl EmitterWriter {
243
243
end_col : hi. col_display ,
244
244
is_primary : span_label. is_primary ,
245
245
label : span_label. label . clone ( ) ,
246
- overlaps : false ,
246
+ overlaps_exactly : false ,
247
247
} ;
248
248
multiline_annotations. push ( ( lo. file . clone ( ) , ml. clone ( ) ) ) ;
249
249
AnnotationType :: Multiline ( ml)
@@ -277,7 +277,7 @@ impl EmitterWriter {
277
277
{
278
278
a. increase_depth ( ) ;
279
279
} else if ann. same_span ( a) && & ann != a {
280
- a. overlaps = true ;
280
+ a. overlaps_exactly = true ;
281
281
} else {
282
282
break ;
283
283
}
@@ -290,7 +290,7 @@ impl EmitterWriter {
290
290
max_depth = ann. depth ;
291
291
}
292
292
let mut end_ann = ann. as_end ( ) ;
293
- if !ann. overlaps {
293
+ if !ann. overlaps_exactly {
294
294
// avoid output like
295
295
//
296
296
// | foo(
You can’t perform that action at this time.
0 commit comments