Skip to content

Commit 6059994

Browse files
committed
JS: Accept more results in SpuriousArguments
1 parent dc28bb5 commit 6059994

File tree

1 file changed

+1
-1
lines changed
  • javascript/ql/test/query-tests/LanguageFeatures/SpuriousArguments

1 file changed

+1
-1
lines changed

javascript/ql/test/query-tests/LanguageFeatures/SpuriousArguments/reflection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function f1(x) {return;}
44
f0.call();
55
f0.call(this);
66
f0.call(this, 1); // $ Alert
7-
f0.call(this, 1, 2);
7+
f0.call(this, 1, 2); // $ Alert
88

99
f1.call();
1010
f1.call(this);

0 commit comments

Comments
 (0)