Skip to content

Commit 39a1cc5

Browse files
committed
FIXUP changes to SpuriousArguments
1 parent 53e6bda commit 39a1cc5

File tree

2 files changed

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

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ var o = {
1414

1515
otherglobal(x); // $ Alert - can never refer to function on line 12
1616
otherglobal.call(null, x); // $ Alert
17-
otherglobal.call(null, x, y); // $ MISSING: Alert
17+
otherglobal.call(null, x, y); // $ Alert

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function h(k) {
2828

2929
new Array(1, 2, 3);
3030

31-
new String(1, 2, 3); // $ MISSING: Alert
31+
new String(1, 2, 3); // $ Alert
3232

3333
(function(f) {
3434
f(42); // $ Alert

0 commit comments

Comments
 (0)