blob: e48310272fb0aa6140dbe9cf2af42ed80140502e (
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
|
y = new Float32Array(11);
x = [];
Object.defineProperty(x, 18, {
get: (function() {
y.length;
}),
});
JSON.stringify(this);
y = undefined;
// The exact error message varies nondeterministically. Accept several
// variations on the theme.
var variations = [
`y is undefined`,
`can't access property "length" of undefined`,
`can't access property "length", y is undefined`,
`undefined has no properties`,
];
var hits = 0;
for (var i = 0; i < 3; i++) {
try {
x.toString();
} catch (e) {
assertEq(e.constructor.name, 'TypeError');
if (!variations.includes(e.message))
throw new Error(`expected one of ${JSON.stringify(variations)}; got ${String(e.message)}`);
hits++;
}
}
assertEq(hits, 3);
|