mirror of
https://github.com/github/codeql.git
synced 2026-03-17 04:56:58 +01:00
Merge pull request #78 from xiemaisi/js/remove-old-test
Approved by esben-semmle
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
function f0() {}
|
||||
function f1(x) {}
|
||||
|
||||
f0.call();
|
||||
f0.call(this);
|
||||
f0.call(this, 1);
|
||||
f0.call(this, 1, 2);
|
||||
|
||||
f1.call();
|
||||
f1.call(this);
|
||||
f1.call(this, 1);
|
||||
f1.call(this, 1, 2);
|
||||
|
||||
f0.apply();
|
||||
f0.apply(this);
|
||||
f0.apply(this, []);
|
||||
f0.apply(this, [1]);
|
||||
f0.apply(this, [1, 2]);
|
||||
|
||||
f1.apply();
|
||||
f1.apply(this);
|
||||
f1.apply(this, []);
|
||||
f1.apply(this, [1]);
|
||||
f1.apply(this, [1, 2]);
|
||||
Reference in New Issue
Block a user