JS: Accept more results in SpuriousArguments

This commit is contained in:
Asger F
2025-02-26 12:52:06 +01:00
parent dc28bb527b
commit 605999454a

View File

@@ -4,7 +4,7 @@ function f1(x) {return;}
f0.call();
f0.call(this);
f0.call(this, 1); // $ Alert
f0.call(this, 1, 2);
f0.call(this, 1, 2); // $ Alert
f1.call();
f1.call(this);