mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
22 lines
302 B
JavaScript
22 lines
302 B
JavaScript
while(true)
|
|
;
|
|
outer: for(a; b; c) {
|
|
for(;;)
|
|
if (d)
|
|
continue outer;
|
|
else if (e)
|
|
break outer;
|
|
else
|
|
continue;
|
|
}
|
|
|
|
do {
|
|
;
|
|
} while(a);
|
|
|
|
for (var i=0,n=10; i<n; ++i);
|
|
|
|
for (var x in xs);
|
|
for (x in xs);
|
|
for (x.f in xs);
|
|
for (x = 0 in xs); |