mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
function f() {
|
|
if (arguments[0].isArray())
|
|
arguments = arguments[0]; // NOT OK
|
|
}
|
|
|
|
function g(x, y) {
|
|
var arguments = [y, x]; // NOT OK
|
|
}
|