blob: b8a4e65196e646e30f421b017bc2689468603cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/ */
function test(fn, thisv) {
var message;
try {
fn.call(thisv);
} catch (e) {
message = e.message;
}
assertEq(/^values method called on incompatible.+/.test(message), true);
}
for (var thisv of [null, undefined, false, true, 0, ""]) {
test(Set.prototype.values, thisv);
test(Set.prototype.keys, thisv);
test(Set.prototype[Symbol.iterator], thisv);
}
|