diff options
Diffstat (limited to 'js/src/tests/ecma_5/extensions/strict-option-redeclared-parameter.js')
-rw-r--r-- | js/src/tests/ecma_5/extensions/strict-option-redeclared-parameter.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/js/src/tests/ecma_5/extensions/strict-option-redeclared-parameter.js b/js/src/tests/ecma_5/extensions/strict-option-redeclared-parameter.js new file mode 100644 index 000000000..5a36b6947 --- /dev/null +++ b/js/src/tests/ecma_5/extensions/strict-option-redeclared-parameter.js @@ -0,0 +1,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!"); |