Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_5 / Scope / regress-208496-001.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) 2003
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   myngs@hotmail.com, 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:    05 June 2003
42  * SUMMARY: Testing |with (f)| inside the definition of |function f()|
43  *
44  * See http://bugzilla.mozilla.org/show_bug.cgi?id=208496
45  *
46  */
47 //-----------------------------------------------------------------------------
48 var UBound = 0;
49 var BUGNUMBER = 208496;
50 var summary = 'Testing |with (f)| inside the definition of |function f()|';
51 var status = '';
52 var statusitems = [];
53 var actual = '(TEST FAILURE)';
54 var actualvalues = [];
55 var expect= '';
56 var expectedvalues = [];
57
58
59 /*
60  * GLOBAL SCOPE
61  */
62 function f(par)
63 {
64   var a = par;
65
66   with(f)
67   {
68     var b = par;
69     actual = b;
70   }
71 }
72
73 status = inSection(1);
74 f('abc'); // this sets |actual|
75 expect = 'abc';
76 addThis();
77
78 status = inSection(2);
79 f(111 + 222); // sets |actual|
80 expect = 333;
81 addThis();
82
83
84 /*
85  * EVAL SCOPE
86  */
87 var s = '';
88 s += 'function F(par)';
89 s += '{';
90 s += '  var a = par;';
91
92 s += '  with(F)';
93 s += '  {';
94 s += '    var b = par;';
95 s += '    actual = b;';
96 s += '  }';
97 s += '}';
98
99 s += 'status = inSection(3);';
100 s += 'F("abc");'; // sets |actual|
101 s += 'expect = "abc";';
102 s += 'addThis();';
103
104 s += 'status = inSection(4);';
105 s += 'F(111 + 222);'; // sets |actual|
106 s += 'expect = 333;';
107 s += 'addThis();';
108 eval(s);
109
110
111 /*
112  * FUNCTION SCOPE
113  */
114 function g(par)
115 {
116   // Add outer variables to complicate the scope chain -
117   var a = '(TEST FAILURE)';
118   var b = '(TEST FAILURE)';
119   h(par);
120
121   function h(par)
122   {
123     var a = par;
124
125     with(h)
126     {
127       var b = par;
128       actual = b;
129     }
130   }
131 }
132
133 status = inSection(5);
134 g('abc'); // sets |actual|
135 expect = 'abc';
136 addThis();
137
138 status = inSection(6);
139 g(111 + 222); // sets |actual|
140 expect = 333;
141 addThis();
142
143
144
145
146 //-----------------------------------------------------------------------------
147 test();
148 //-----------------------------------------------------------------------------
149
150
151
152 function addThis()
153 {
154   statusitems[UBound] = status;
155   actualvalues[UBound] = actual;
156   expectedvalues[UBound] = expect;
157   UBound++;
158 }
159
160
161 function test()
162 {
163   enterFunc('test');
164   printBugNumber(BUGNUMBER);
165   printStatus(summary);
166
167   for (var i=0; i<UBound; i++)
168   {
169     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
170   }
171
172   exitFunc ('test');
173 }