Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_8 / genexps / regress-380237-03.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  * Mozilla Foundation.
19  * Portions created by the Initial Developer are Copyright (C) 2007
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s): Jesse Ruderman
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38
39 //-----------------------------------------------------------------------------
40 var BUGNUMBER = 380237;
41 var summary = 'Decompilation of generator expressions';
42 var actual = '';
43 var expect = '';
44
45
46 //-----------------------------------------------------------------------------
47 test();
48 //-----------------------------------------------------------------------------
49
50 expect = 'No Error';
51 actual = '';
52 try
53 {
54   var g = ((yield i) for (i in [1,2,3]));
55   actual = 'No Error';
56 }
57 catch(ex)
58 {
59   actual = ex + '';
60 }
61 reportCompare(expect, actual, summary + ': top level');
62
63
64 function test()
65 {
66   enterFunc ('test');
67   printBugNumber(BUGNUMBER);
68   printStatus (summary);
69  
70   var f = (function() { g = (d for (d in [0]) for (e in [1])); });
71   expect = 'function() { g = (d for (d in [0]) for (e in [1])); }';
72   actual = f + '';
73   compareSource(expect, actual, summary + ': see bug 380506');
74
75   f = function() { return (1 for (i in [])) };
76   expect = 'function() { return (1 for (i in [])); }';
77   actual = f + '';
78   compareSource(expect, actual, summary);
79
80   f = function() { with((x for (x in []))) { } };
81   expect = 'function() { with(x for (x in [])) { } }';
82   actual = f + '';
83   compareSource(expect, actual, summary);
84
85   f = (function() { (1 for (w in []) if (0)) });
86   expect = 'function() { (1 for (w in []) if (0)); }';
87   actual = f + '';
88   compareSource(expect, actual, summary);
89
90   f = (function() { (1 for (w in []) if (x)) });
91   expect = 'function() { (1 for (w in []) if (x)); }';
92   actual = f + '';
93   compareSource(expect, actual, summary);
94
95   f = (function() { (1 for (w in []) if (1)) });
96   expect = 'function() { (1 for (w in []) ); }';
97   actual = f + '';
98   compareSource(expect, actual, summary);
99
100   f = (function() { (x for ([{}, {}] in [])); });
101   expect = 'function() { (x for ([[], []] in [])); }';
102   actual = f + '';
103   compareSource(expect, actual, summary);
104
105   expect = 'SyntaxError: invalid assignment left-hand side';
106   actual = '';
107   try
108   {
109     eval('(function() { (x for each (x in [])) = 3; })');
110   }
111   catch(ex)
112   {
113     actual = ex + '';
114   }
115   reportCompare(expect, actual, summary + ': Do not Assert: *pc == JSOP_CALL');
116
117   f = (function() { (x*x for (x in a)); });
118   expect = 'function() { (x*x for (x in a)); }';
119   actual = f + '';
120   compareSource(expect, actual, summary);
121
122   f = (function () { (1 for (y in (yield 3))); });
123   expect = 'function () { (1 for (y in yield 3)); }';
124   actual = f + '';
125   compareSource(expect, actual, summary);
126    
127   expect = 'SyntaxError: invalid delete operand';
128   try
129   {
130     eval('(function () { delete (x for (x in [])); })');
131   }
132   catch(ex)
133   {
134     actual = ex + '';
135   }
136   reportCompare(expect, actual, summary + ': Do not Assert: *pc == JSOP_CALL');
137
138   f = (function() { ([yield] for (x in [])); });
139   expect = 'function() { ([yield] for (x in [])); }';
140   actual = f + '';
141   compareSource(expect, actual, summary);
142
143   f = function() { if(1, (x for (x in []))) { } };
144   expect = 'function() { if(1, (x for (x in []))) { } }';
145   actual = f + '';
146   compareSource(expect, actual, summary);
147
148   f = function () {return(i*j for each (i in [1,2,3,4]) 
149                           for each (j in [5,6,7,8]))};
150   expect = 'function () {return(i*j for each (i in [1,2,3,4]) ' + 
151     'for each (j in [5,6,7,8]));}';
152   actual = f + '';
153   compareSource(expect, actual, summary);
154
155   expect = 'No Error';
156   actual = '';
157   try
158   {
159     var g = ((yield i) for (i in [1,2,3]));
160     actual = 'No Error';
161   }
162   catch(ex)
163   {
164     actual = ex + '';
165   }
166   reportCompare(expect, actual, summary + ': nested');
167
168   f = function() { try { } catch(x if (1 for (x in []))) { } finally { } };
169   expect = 'function() { try {} catch(x if (1 for (x in []))) {} finally {} }';
170   actual = f + '';
171   compareSource(expect, actual, summary);
172
173   f = eval(uneval(f));
174   expect = 'function() { try {} catch(x if (1 for (x in []))) {} finally {} }';
175   actual = f + '';
176   compareSource(expect, actual, summary + ': eval(uneval())');
177
178   f = function() { if (1, (x for (x in []))) { } };
179   expect = 'function() { if (1, (x for (x in []))) { } }';
180   actual = f + '';
181   compareSource(expect, actual, summary);
182
183   f = function() { ((a, b) for (x in [])) };
184   expect = 'function() { ((a, b) for (x in [])); }';
185   actual = f + '';
186   compareSource(expect, actual, summary);
187
188   exitFunc ('test');
189 }