Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 //-----------------------------------------------------------------------------
7 var BUGNUMBER = 411279;
8 var summary = 'let declaration as direct child of switch body block';
9 var actual = 'No Crash';
10 var expect = 'No Crash';
13 //-----------------------------------------------------------------------------
14 test();
15 //-----------------------------------------------------------------------------
17 function test()
18 {
19 enterFunc ('test');
20 printBugNumber(BUGNUMBER);
21 printStatus (summary);
23 function f(x)
24 {
25 var value = '';
27 switch(x)
28 {
29 case 1:
30 value = "1 " + y;
31 break;
32 case 2:
33 let y = 42;
34 value = "2 " + y;
35 break;
36 default:
37 value = "default " + y;
38 }
40 return value;
41 }
43 expect = '1 undefined';
44 actual = f(1);
45 reportCompare(expect, actual, summary + ': f(1)');
47 expect = '2 42';
48 actual = f(2);
49 reportCompare(expect, actual, summary + ': f(2)');
51 expect = 'default undefined';
52 actual = f(3);
53 reportCompare(expect, actual, summary + ': f(3)');
55 exitFunc ('test');
56 }