blob: 6a9fd3b50e270c3256eb7265f40c48d9fff7ab4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
var expect = 'SyntaxError: duplicate argument names not allowed in this context';
var actual = 'No error';
var a = [];
// Test up to 200 to cover tunables such as js::PropertyTree::MAX_HEIGHT.
for (var i = 0; i < 200; i++) {
a.push("b" + i);
try {
eval("(function ([" + a.join("],[") + "],a,a){})");
} catch (e) {
actual = '' + e;
}
assertEq(actual, expect);
}
reportCompare(0, 0, "ok");
|