Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_5 / Scope / regress-185485.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  *   igor@icesoft.no, 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:    16 Dec 2002
42  * SUMMARY: Testing |with (x) {function f() {}}| when |x.f| already exists
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=185485
44  *
45  * The idea is this: if |x| does not already have a property named |f|,
46  * a |with| statement cannot be used to define one. See, for example,
47  *
48  *       http://bugzilla.mozilla.org/show_bug.cgi?id=159849#c11
49  *       http://bugzilla.mozilla.org/show_bug.cgi?id=184107
50  *
51  *
52  * However, if |x| already has a property |f|, a |with| statement can be
53  * used to modify the value it contains:
54  *
55  *                 with (x) {f = 1;}
56  *
57  * This should work even if we use a |var| statement, like this:
58  *
59  *                 with (x) {var f = 1;}
60  *
61  * However, it should NOT work if we use a |function| statement, like this:
62  *
63  *                 with (x) {function f() {}}
64  *
65  * Instead, this should newly define a function f in global scope.
66  * See http://bugzilla.mozilla.org/show_bug.cgi?id=185485
67  *
68  */
69 //-----------------------------------------------------------------------------
70 var UBound = 0;
71 var BUGNUMBER = 185485;
72 var summary = 'Testing |with (x) {function f() {}}| when |x.f| already exists';
73 var status = '';
74 var statusitems = [];
75 var actual = '';
76 var actualvalues = [];
77 var expect= '';
78 var expectedvalues = [];
79
80 var x = { f:0, g:0 };
81
82 with (x)
83 {
84   f = 1;
85 }
86 status = inSection(1);
87 actual = x.f;
88 expect = 1;
89 addThis();
90
91 with (x)
92 {
93   var f = 2;
94 }
95 status = inSection(2);
96 actual = x.f;
97 expect = 2;
98 addThis();
99
100 /*
101  * Use of a function statement under the with-block should not affect
102  * the local property |f|, but define a function |f| in global scope -
103  */
104 with (x)
105 {
106   function f() {}
107 }
108 status = inSection(3);
109 actual = x.f;
110 expect = 2;
111 addThis();
112
113 status = inSection(4);
114 actual = typeof this.f;
115 expect = 'function';
116 addThis();
117
118
119 /*
120  * Compare use of function expression instead of function statement.
121  * Note it is important that |x.g| already exists. Otherwise, this
122  * would newly define |g| in global scope -
123  */
124 with (x)
125 {
126   var g = function() {}
127 }
128 status = inSection(5);
129 actual = x.g.toString();
130 expect = (function () {}).toString();
131 addThis();
132
133
134
135 //-----------------------------------------------------------------------------
136 test();
137 //-----------------------------------------------------------------------------
138
139
140
141 function addThis()
142 {
143   statusitems[UBound] = status;
144   actualvalues[UBound] = actual;
145   expectedvalues[UBound] = expect;
146   UBound++;
147 }
148
149
150 function test()
151 {
152   enterFunc('test');
153   printBugNumber(BUGNUMBER);
154   printStatus(summary);
155
156   for (var i=0; i<UBound; i++)
157   {
158     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
159   }
160
161   exitFunc ('test');
162 }