Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / Function / regress-131964.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:    19 Mar 2002
42  * SUMMARY: Function declarations in global or function scope are {DontDelete}.
43  *          Function declarations in eval scope are not {DontDelete}.
44  *
45  * See http://bugzilla.mozilla.org/show_bug.cgi?id=131964
46  *
47  */
48 //-----------------------------------------------------------------------------
49 var UBound = 0;
50 var BUGNUMBER =   131964;
51 var summary = 'Functions defined in global or function scope are {DontDelete}';
52 var status = '';
53 var statusitems = [];
54 var actual = '';
55 var actualvalues = [];
56 var expect= '';
57 var expectedvalues = [];
58
59
60 status = inSection(1);
61 function f()
62 {
63   return 'f lives!';
64 }
65 delete f;
66
67 try
68 {
69   actual = f();
70 }
71 catch(e)
72 {
73   actual = 'f was deleted';
74 }
75
76 expect = 'f lives!';
77 addThis();
78
79
80
81 /*
82  * Try the same test in function scope -
83  */
84 status = inSection(2);
85 function g()
86 {
87   function f()
88   {
89     return 'f lives!';
90   }
91   delete f;
92
93   try
94   {
95     actual = f();
96   }
97   catch(e)
98   {
99     actual = 'f was deleted';
100   }
101
102   expect = 'f lives!';
103   addThis();
104 }
105 g();
106
107
108
109 /*
110  * Try the same test in eval scope - here we EXPECT the function to be deleted (?)
111  */
112 status = inSection(3);
113 var s = '';
114 s += 'function h()';
115 s += '{ ';
116 s += '  return "h lives!";';
117 s += '}';
118 s += 'delete h;';
119
120 s += 'try';
121 s += '{';
122 s += '  actual = h();';
123 s += '}';
124 s += 'catch(e)';
125 s += '{';
126 s += '  actual = "h was deleted";';
127 s += '}';
128
129 s += 'expect = "h was deleted";';
130 s += 'addThis();';
131 eval(s);
132
133
134 /*
135  * Define the function in eval scope, but delete it in global scope -
136  */
137 status = inSection(4);
138 s = '';
139 s += 'function k()';
140 s += '{ ';
141 s += '  return "k lives!";';
142 s += '}';
143 eval(s);
144
145 delete k;
146
147 try
148 {
149   actual = k();
150 }
151 catch(e)
152 {
153   actual = 'k was deleted';
154 }
155
156 expect = 'k was deleted';
157 addThis();
158
159
160
161
162 //-----------------------------------------------------------------------------
163 test();
164 //-----------------------------------------------------------------------------
165
166
167
168 function wasDeleted(functionName)
169 {
170   return functionName + ' was deleted...';
171 }
172
173
174 function addThis()
175 {
176   statusitems[UBound] = status;
177   actualvalues[UBound] = actual;
178   expectedvalues[UBound] = expect;
179   UBound++;
180 }
181
182
183 function test()
184 {
185   enterFunc('test');
186   printBugNumber(BUGNUMBER);
187   printStatus(summary);
188
189   for (var i=0; i<UBound; i++)
190   {
191     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
192   }
193
194   exitFunc ('test');
195 }