Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / ExecutionContexts / 10.1.3-1.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corp.
19  * Portions created by the Initial Developer are Copyright (C) 2002
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   pschwartau@netscape.com
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39 /*
40  *
41  * Date:    11 Feb 2002
42  * SUMMARY: Testing functions having duplicate formal parameter names
43  *
44  * Note: given function f(x,x,x,x) {return x;}; f(1,2,3,4) should return 4.
45  * See ECMA-262 3rd Edition Final Section 10.1.3: Variable Instantiation
46  *
47  * Also see http://bugzilla.mozilla.org/show_bug.cgi?id=124900
48  */
49 //-----------------------------------------------------------------------------
50 var UBound = 0;
51 var BUGNUMBER = 124900;
52 var summary = 'Testing functions having duplicate formal parameter names';
53 var status = '';
54 var statusitems = [];
55 var actual = '';
56 var actualvalues = [];
57 var expect= '';
58 var expectedvalues = [];
59
60
61 function f1(x,x)
62 {
63   return x;
64 }
65 status = inSection(1);
66 actual = f1(1,2);
67 expect = 2;
68 addThis();
69
70
71 function f2(x,x,x)
72 {
73   return x*x*x;
74 }
75 status = inSection(2);
76 actual = f2(1,2,3);
77 expect = 27;
78 addThis();
79
80
81 function f3(x,x,x,x)
82 {
83   return 'a' + x + 'b' + x + 'c' + x ;
84 }
85 status = inSection(3);
86 actual = f3(1,2,3,4);
87 expect = 'a4b4c4';
88 addThis();
89
90
91 /*
92  * If the value of the last duplicate parameter is not provided by
93  * the function caller, the value of this parameter is undefined
94  */
95 function f4(x,a,b,x,z)
96 {
97   return x;
98 }
99 status = inSection(4);
100 actual = f4(1,2);
101 expect = undefined;
102 addThis();
103
104
105 /*
106  * f.toString() should preserve any duplicate formal parameter names that exist
107  */
108 function f5(x,x,x,x)
109 {
110 }
111 status = inSection(5);
112 actual = f5.toString().match(/\((.*)\)/)[1];
113 actual = actual.replace(/\s/g, ''); // for definiteness, remove any white space
114 expect = 'x,x,x,x';
115 addThis();
116
117
118 function f6(x,x,x,x)
119 {
120   var ret = [];
121
122   for (var i=0; i<arguments.length; i++)
123     ret.push(arguments[i]);
124
125   return ret.toString();
126 }
127 status = inSection(6);
128 actual = f6(1,2,3,4);
129 expect = '1,2,3,4';
130 addThis();
131
132
133 /*
134  * This variation (assigning to x inside f) is from nboyd@atg.com
135  * See http://bugzilla.mozilla.org/show_bug.cgi?id=124900
136  */
137 function f7(x,x,x,x)
138 {
139   x = 999;
140   var ret = [];
141
142   for (var i=0; i<arguments.length; i++)
143     ret.push(arguments[i]);
144
145   return ret.toString();
146 }
147 status = inSection(7);
148 actual = f7(1,2,3,4);
149 expect = '1,2,3,999';
150 addThis();
151
152
153 /*
154  * Same as above, but with |var| keyword added -
155  */
156 function f8(x,x,x,x)
157 {
158   var x = 999;
159   var ret = [];
160
161   for (var i=0; i<arguments.length; i++)
162     ret.push(arguments[i]);
163
164   return ret.toString();
165 }
166 status = inSection(8);
167 actual = f8(1,2,3,4);
168 expect = '1,2,3,999';
169 addThis();
170
171
172
173 //-----------------------------------------------------------------------------
174 test();
175 //-----------------------------------------------------------------------------
176
177
178
179 function addThis()
180 {
181   statusitems[UBound] = status;
182   actualvalues[UBound] = actual;
183   expectedvalues[UBound] = expect;
184   UBound++;
185 }
186
187
188 function test()
189 {
190   enterFunc('test');
191   printBugNumber(BUGNUMBER);
192   printStatus(summary);
193
194   for (var i=0; i<UBound; i++)
195   {
196     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
197   }
198
199   exitFunc ('test');
200 }