mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
function f() {
|
|
if (arguments[0].isArray())
|
|
arguments = arguments[0]; // NOT OK
|
|
}
|
|
|
|
function g(x, y) {
|
|
var arguments = [y, x]; // NOT OK
|
|
}
|
|
|
|
(function (){
|
|
for ([arguments] of o);
|
|
for ([arguments = 4] of o);
|
|
});
|