Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / js / tests / js1_7 / lexical / regress-351515.js
blob5bb55d7318206d2cbdb083f48fb3f77c0baa3dfb
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): Igor Bukanov
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 ***** */
38 var gTestfile = 'regress-351515.js';
39 //-----------------------------------------------------------------------------
40 var BUGNUMBER = 351515;
41 var summary = 'Invalid uses of yield, let keywords in js17';
42 var actual = '';
43 var expect = '';
46 //-----------------------------------------------------------------------------
47 test();
48 //-----------------------------------------------------------------------------
50 try
52   expect = 'SyntaxError: syntax error';
53   eval('yield = 1;');
54   actual = 'No Error';
56 catch(ex)
58   actual = ex + '';
60 reportCompare(expect, actual, summary + ': global: yield = 1');
62 try
64   expect = 'SyntaxError: missing variable name';
65   eval('let = 1;');
66   actual = 'No Error';
68 catch(ex)
70   actual = ex + '';
72 reportCompare(expect, actual, summary + ': global: let = 1');
74 function test()
76   enterFunc ('test');
77   printBugNumber(BUGNUMBER);
78   printStatus (summary);
80   try
81   {
82     expect = 'SyntaxError: missing formal parameter';
83     eval('function f(yield, let) { return yield+let; }');
84     actual = 'No Error';
85   }
86   catch(ex)
87   {
88     actual = ex + '';
89   }
90   reportCompare(expect, actual, summary +
91                 ': function f(yield, let) { return yield+let; }');
93   try
94   {
95     expect = 'SyntaxError: missing variable name';
96     eval('var yield = 1;');
97     actual = 'No Error';
98   }
99   catch(ex)
100   {
101     actual = ex + '';
102   }
103   reportCompare(expect, actual, summary + ': function () {var yield;}');
105   try
106   {
107     expect = 'SyntaxError: missing variable name';
108     eval('var let = 1;');
109     actual = 'No Error';
110   }
111   catch(ex)
112   {
113     actual = ex + '';
114   }
115   reportCompare(expect, actual, summary + ': function () { var let;}');
117   try
118   {
119     expect = 'No Error';
120     function yield() {}
121     actual = 'No Error';
122   }
123   catch(ex)
124   {
125     actual = ex + '';
126   }
127   reportCompare(expect, actual, summary + ': function yield()');
129   exitFunc ('test');