blob: 5a36b69470660f40a1eeec111a1956990ebb9fe4 (
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
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 630770;
var summary =
'Correctly warn about duplicate parameters when the strict option is enabled';
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
// Verify that duplicate parameters, with the strict option set, don't provoke
// an assertion. Ideally we'd also verify that we warn exactly once per
// duplicated parameter name, but at present there's no way to test that
// without more effort (further customizing the shell JSErrorReporter) than we
// want to make now.
options("strict");
eval("function a(x, x, x, x) { }");
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");
|