|
1 // |reftest| skip -- obsolete test |
|
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
3 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 //----------------------------------------------------------------------------- |
|
8 var BUGNUMBER = 420399; |
|
9 var summary = 'Let expression error involving undefined'; |
|
10 var actual = ''; |
|
11 var expect = ''; |
|
12 |
|
13 |
|
14 //----------------------------------------------------------------------------- |
|
15 test(); |
|
16 //----------------------------------------------------------------------------- |
|
17 |
|
18 function test() |
|
19 { |
|
20 enterFunc ('test'); |
|
21 printBugNumber(BUGNUMBER); |
|
22 printStatus (summary); |
|
23 |
|
24 expect = /TypeError: \(let \(a = undefined\) a\) (is undefined|has no properties)/; |
|
25 try |
|
26 { |
|
27 (let (a=undefined) a).b = 3; |
|
28 } |
|
29 catch(ex) |
|
30 { |
|
31 actual = ex + ''; |
|
32 } |
|
33 |
|
34 reportMatch(expect, actual, summary); |
|
35 |
|
36 exitFunc ('test'); |
|
37 } |