On x86 compilers without fastcall, simulate it when invoking traces and un-simulate...
[wine-gecko.git] / js / tests / js1_7 / block / regress-343765.js
blob485525909b683f73b9f7bbdbd1abbe56cbd5de14
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) 2006
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s): nanto vi (TOYAMA Nao)
23  *                 Blake Kaplan
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 ***** */
39 var gTestfile = 'regress-343765.js';
40 //-----------------------------------------------------------------------------
41 var BUGNUMBER = 343765;
42 var summary = 'Function defined in a let statement/expression does not work correctly outside the let scope';
43 var actual = '';
44 var expect = '';
47 //-----------------------------------------------------------------------------
48 test();
49 //-----------------------------------------------------------------------------
51 function test()
53   enterFunc ('test');
54   printBugNumber(BUGNUMBER);
55   printStatus (summary);
57   print("SECTION 1");
58   try {
59     let (a = 2, b = 3) { function f() { return String([a,b]); } f(); throw 42; }
60   } catch (e) {
61     f();
62   }
64   reportCompare(expect, actual, summary);
66   print("SECTION 2");
67   try {
68     with ({a:2,b:3}) { function f() { return String([a,b]); } f(); throw 42; }
69   } catch (e) {
70     f();
71   }
73   print("SECTION 3");
74   function g3() {
75     print("Here!");
76     with ({a:2,b:3}) {
77       function f() {
78         return String([a,b]);
79       }
81       f();
82       return f;
83     }
84   }
86   k = g3();
87   k();
89   print("SECTION 4");
90   function g4() {
91     print("Here!");
92     let (a=2,b=3) {
93       function f() {
94         return String([a,b]);
95       }
97       f();
98       return f;
99     }
100   }
102   k = g4();
103   k();
105   print("SECTION 5");
106   function g5() {
107     print("Here!");
108     let (a=2,b=3) {
109       function f() {
110         return String([a,b]);
111       }
113       f();
114       yield f;
115     }
116   }
118   k = g5().next();
119   k();
121   reportCompare(expect, actual, summary);
123   exitFunc ('test');
126 function returnResult(a)
128   return a + '';