Merge pull request #78 from xiemaisi/js/remove-old-test

Approved by esben-semmle
This commit is contained in:
semmle-qlci
2018-08-21 09:04:52 +01:00
committed by GitHub

View File

@@ -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]);