Skip to content

Commit 22a460a

Browse files
committed
test(coverage): statements
- && operator - return without expression - while
1 parent 1b53d7b commit 22a460a

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
function f() {
2+
let i = 0
3+
while (true) {
4+
if (i == 5 && i != 6) {
5+
return
6+
}
7+
i += 1
8+
}
9+
}
10+
11+
f()

0 commit comments

Comments
 (0)