blob: ca6363be5c1f05c2646d66ede3db5b3c7cdba76e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
// Don't use .call(...) in the self-hosted Set.prototype.forEach
var functionCall = Function.prototype.call;
function throwSyntaxError()
{
throw new SyntaxError("Function.prototype.call incorrectly called");
}
function lalala() {}
Function.prototype.call = throwSyntaxError;
new Set().forEach(throwSyntaxError);
new Set([1]).forEach(lalala);
new Set([{}, 4]).forEach(lalala);
Function.prototype.call = function() { this.add(3.141592654); };
new Set().forEach(throwSyntaxError);
new Set(["foo"]).forEach(lalala);
new Set([undefined, NaN]).forEach(lalala);
var callCount = 0;
Function.prototype.call = function() { callCount++; };
new Set().forEach(throwSyntaxError);
new Set([new Number]).forEach(lalala);
new Set([true, new Boolean(false)]).forEach(lalala);
assertEq(callCount, 0);
|