]> git.saurik.com Git - apple/javascriptcore.git/blame - tests/mozilla/ecma_3/ExecutionContexts/10.1.3-2.js
JavaScriptCore-461.tar.gz
[apple/javascriptcore.git] / tests / mozilla / ecma_3 / ExecutionContexts / 10.1.3-2.js
CommitLineData
b37bf2e1
A
1/* ***** BEGIN LICENSE BLOCK *****
2* Version: NPL 1.1/GPL 2.0/LGPL 2.1
3*
4* The contents of this file are subject to the Netscape Public License
5* Version 1.1 (the "License"); you may not use this file except in
6* compliance with the License. You may obtain a copy of the License at
7* http://www.mozilla.org/NPL/
8*
9* Software distributed under the License is distributed on an "AS IS" basis,
10* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11* for the specific language governing rights and limitations under the
12* License.
13*
14* The Original Code is JavaScript Engine testing utilities.
15*
16* The Initial Developer of the Original Code is Netscape Communications Corp.
17* Portions created by the Initial Developer are Copyright (C) 2002
18* the Initial Developer. All Rights Reserved.
19*
20* Contributor(s): pschwartau@netscape.com
21*
22* Alternatively, the contents of this file may be used under the terms of
23* either the GNU General Public License Version 2 or later (the "GPL"), or
24* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
25* in which case the provisions of the GPL or the LGPL are applicable instead
26* of those above. If you wish to allow use of your version of this file only
27* under the terms of either the GPL or the LGPL, and not to allow others to
28* use your version of this file under the terms of the NPL, indicate your
29* decision by deleting the provisions above and replace them with the notice
30* and other provisions required by the GPL or the LGPL. If you do not delete
31* the provisions above, a recipient may use your version of this file under
32* the terms of any one of the NPL, the GPL or the LGPL.
33*
34* ***** END LICENSE BLOCK *****
35*
36*
37* Date: 11 Feb 2002
38* SUMMARY: Testing functions having duplicate formal parameter names
39*
40* SpiderMonkey was crashing on each case below if the parameters had
41* the same name. But duplicate parameter names are permitted by ECMA;
42* see ECMA-262 3rd Edition Final Section 10.1.3
43*
44* NOTE: Rhino does not have toSource() and uneval(); they are non-ECMA
45* extensions to the language. So we include a test for them at the beginning -
46*/
47//-----------------------------------------------------------------------------
48var UBound = 0;
49var bug = '(none)';
50var summary = 'Testing functions having duplicate formal parameter names';
51var status = '';
52var statusitems = [];
53var actual = '';
54var actualvalues = [];
55var expect= '';
56var expectedvalues = [];
57var OBJ = new Object();
58var OBJ_TYPE = OBJ.toString();
59
60/*
61 * Exit if the implementation doesn't support toSource() or uneval(),
62 * since these are non-ECMA extensions to the language -
63 */
64try
65{
66 if (!OBJ.toSource || !uneval(OBJ))
67 quit();
68}
69catch(e)
70{
71 quit();
72}
73
74
75/*
76 * OK, now begin the test. Just checking that we don't crash on these -
77 */
78function f1(x,x,x,x)
79{
80 var ret = eval(arguments.toSource());
81 return ret.toString();
82}
83status = inSection(1);
84actual = f1(1,2,3,4);
85expect = OBJ_TYPE;
86addThis();
87
88
89/*
90 * Same thing, but preface |arguments| with the function name
91 */
92function f2(x,x,x,x)
93{
94 var ret = eval(f2.arguments.toSource());
95 return ret.toString();
96}
97status = inSection(2);
98actual = f2(1,2,3,4);
99expect = OBJ_TYPE;
100addThis();
101
102
103function f3(x,x,x,x)
104{
105 var ret = eval(uneval(arguments));
106 return ret.toString();
107}
108status = inSection(3);
109actual = f3(1,2,3,4);
110expect = OBJ_TYPE;
111addThis();
112
113
114/*
115 * Same thing, but preface |arguments| with the function name
116 */
117function f4(x,x,x,x)
118{
119 var ret = eval(uneval(f4.arguments));
120 return ret.toString();
121}
122status = inSection(4);
123actual = f4(1,2,3,4);
124expect = OBJ_TYPE;
125addThis();
126
127
128
129
130//-----------------------------------------------------------------------------
131test();
132//-----------------------------------------------------------------------------
133
134
135
136function addThis()
137{
138 statusitems[UBound] = status;
139 actualvalues[UBound] = actual;
140 expectedvalues[UBound] = expect;
141 UBound++;
142}
143
144
145function test()
146{
147 enterFunc('test');
148 printBugNumber(bug);
149 printStatus(summary);
150
151 for (var i=0; i<UBound; i++)
152 {
153 reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
154 }
155
156 exitFunc ('test');
157}