blob: cc85c90f2534baf761cfd542f85694da219a4ad0 (
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
|
/* 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(/^\w+ method called on incompatible.+/.test(message), true);
assertEq(message.includes("std_"), false);
}
for (var thisv of [null, undefined, false, true, 0, ""]) {
test(Map.prototype.values, thisv);
test(Map.prototype.keys, thisv);
test(Map.prototype.entries, thisv);
test(Map.prototype[Symbol.iterator], thisv);
}
if (typeof reportCompare === "function")
reportCompare(0, 0);
|