1
Fork 0

coverage: Restrict empty-span expansion to only cover { and }

This commit is contained in:
Zalathar 2024-11-05 21:59:10 +11:00
parent 996bdabc2a
commit 3c30fe3423
50 changed files with 200 additions and 189 deletions

View file

@ -5,7 +5,7 @@
LL| 1| if true {
LL| 1| countdown = 10;
LL| 1| }
^0
^0
LL| |
LL| | const B: u32 = 100;
LL| 1| let x = if countdown > 7 {
@ -25,7 +25,7 @@
LL| 1| if true {
LL| 1| countdown = 10;
LL| 1| }
^0
^0
LL| |
LL| 1| if countdown > 7 {
LL| 1| countdown -= 4;
@ -44,7 +44,7 @@
LL| 1| if true {
LL| 1| countdown = 10;
LL| 1| }
^0
^0
LL| |
LL| 1| if countdown > 7 {
LL| 1| countdown -= 4;
@ -64,7 +64,7 @@
LL| 1| if true {
LL| 1| countdown = 1;
LL| 1| }
^0
^0
LL| |
LL| 1| let z = if countdown > 7 {
^0