Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / e4x / decompilation / regress-352013.js
1 /* -*- Mode: java; tab-width:8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3 /* ***** BEGIN LICENSE BLOCK *****
4  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5  *
6  * The contents of this file are subject to the Mozilla Public License Version
7  * 1.1 (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  * http://www.mozilla.org/MPL/
10  *
11  * Software distributed under the License is distributed on an "AS IS" basis,
12  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13  * for the specific language governing rights and limitations under the
14  * License.
15  *
16  * The Original Code is JavaScript Engine testing utilities.
17  *
18  * The Initial Developer of the Original Code is
19  * Mozilla Foundation.
20  * Portions created by the Initial Developer are Copyright (C) 2007
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s): Brendan Eich
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 var BUGNUMBER = 352013;
41 var summary = 'Decompilation with new operator redeaux';
42 var actual = '';
43 var expect = '';
44
45 printBugNumber(BUGNUMBER);
46 START(summary);
47
48 var l, m, r;
49 var nTests = 0;
50
51 // ---------------------------------------------------------------
52
53 l = function () { (new x(y))[z]; };
54 expect = 'function () { (new x(y))[z]; }';
55 actual = l + '';
56 compareSource(expect, actual, inSection(++nTests) + summary);
57
58 m = function () { new (x(y))[z]; };
59 expect = 'function () { new (x(y)[z]); }';
60 actual = m + '';
61 compareSource(expect, actual, inSection(++nTests) + summary);
62
63 r = function () { new (x(y)[z]); };
64 expect = 'function () { new (x(y)[z]); }';
65 actual = r + '';
66 compareSource(expect, actual, inSection(++nTests) + summary);
67
68 // ---------------------------------------------------------------
69
70 l = function () { (new x(y)).@a; };
71 expect = 'function () { (new x(y)).@a; }';
72 actual = l + '';
73 compareSource(expect, actual, inSection(++nTests) + summary);
74
75 m = function () { new (x(y)).@a; };
76 expect = 'function () { new (x(y).@a); }';
77 actual = m + '';
78 compareSource(expect, actual, inSection(++nTests) + summary);
79
80 r = function () { new (x(y).@a); };
81 expect = 'function () { new (x(y).@a); }';
82 actual = r + '';
83 compareSource(expect, actual, inSection(++nTests) + summary);
84
85 // ---------------------------------------------------------------
86
87 l = function () { (new x(y)).@n::a; };
88 expect = 'function () { (new x(y)).@[n::a]; }';
89 actual = l + '';
90 compareSource(expect, actual, inSection(++nTests) + summary);
91
92 m = function () { new (x(y)).@n::a; };
93 expect = 'function () { new (x(y).@[n::a]); }';
94 actual = m + '';
95 compareSource(expect, actual, inSection(++nTests) + summary);
96
97 r = function () { new (x(y).@n::a); };
98 expect = 'function () { new (x(y).@[n::a]); }';
99 actual = r + '';
100 compareSource(expect, actual, inSection(++nTests) + summary);
101
102 // ---------------------------------------------------------------
103
104 l = function () { (new x(y)).n::z; };
105 expect = 'function () { (new x(y)).n::z; }';
106 actual = l + '';
107 compareSource(expect, actual, inSection(++nTests) + summary);
108
109 m = function () { new (x(y)).n::z; };
110 expect = 'function () { new (x(y).n::z); }';
111 actual = m + '';
112 compareSource(expect, actual, inSection(++nTests) + summary);
113
114 r = function () { new (x(y).n::z); };
115 expect = 'function () { new (x(y).n::z); }';
116 actual = r + '';
117 compareSource(expect, actual, inSection(++nTests) + summary);
118
119 // ---------------------------------------------------------------
120
121 l = function () { (new x(y)).n::[z]; };
122 expect = 'function () { (new x(y)).n::[z]; }';
123 actual = l + '';
124 compareSource(expect, actual, inSection(++nTests) + summary);
125
126 m = function () { new (x(y)).n::[z]; };
127 expect = 'function () { new (x(y).n::[z]); }';
128 actual = m + '';
129 compareSource(expect, actual, inSection(++nTests) + summary);
130
131 r = function () { new (x(y).n::[z]); };
132 expect = 'function () { new (x(y).n::[z]); }';
133 actual = r + '';
134 compareSource(expect, actual, inSection(++nTests) + summary);
135
136 END();