|
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/. */ |
|
5 |
|
6 //----------------------------------------------------------------------------- |
|
7 var BUGNUMBER = 352197; |
|
8 var summary = 'Strict warning for return e; vs. return;'; |
|
9 var actual = ''; |
|
10 var expect = 'TypeError: function f does not always return a value'; |
|
11 |
|
12 printBugNumber(BUGNUMBER); |
|
13 printStatus (summary); |
|
14 |
|
15 if (!options().match(/strict/)) |
|
16 { |
|
17 options('strict'); |
|
18 } |
|
19 if (!options().match(/werror/)) |
|
20 { |
|
21 options('werror'); |
|
22 } |
|
23 |
|
24 try |
|
25 { |
|
26 eval('function f() { if (x) return y; }'); |
|
27 } |
|
28 catch(ex) |
|
29 { |
|
30 actual = ex + ''; |
|
31 } |
|
32 |
|
33 reportCompare(expect, actual, summary + ': 1'); |
|
34 |
|
35 try |
|
36 { |
|
37 eval('function f() { if (x) { return y; } }'); |
|
38 } |
|
39 catch(ex) |
|
40 { |
|
41 actual = ex + ''; |
|
42 } |
|
43 |
|
44 reportCompare(expect, actual, summary + ': 2'); |
|
45 |
|
46 var f; |
|
47 expect = 'TypeError: function anonymous does not always return a value'; |
|
48 |
|
49 try |
|
50 { |
|
51 f = Function('if (x) return y;'); |
|
52 } |
|
53 catch(ex) |
|
54 { |
|
55 actual = ex + ''; |
|
56 } |
|
57 |
|
58 reportCompare(expect, actual, summary + ': 3'); |
|
59 |
|
60 try |
|
61 { |
|
62 f = Function('if (x) { return y; }'); |
|
63 } |
|
64 catch(ex) |
|
65 { |
|
66 actual = ex + ''; |
|
67 } |
|
68 |
|
69 reportCompare(expect, actual, summary + ': 4'); |