mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
10 lines
125 B
JavaScript
10 lines
125 B
JavaScript
function sc_alert(i) {
|
|
for(;i;) ;
|
|
foo;
|
|
}
|
|
|
|
function f(o) {
|
|
for({x, ...rest} of o)
|
|
console.log(x in rest);
|
|
}
|