|
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 /** |
|
8 * File Name: boolean-001.js |
|
9 * Description: |
|
10 * |
|
11 * http://scopus.mcom.com/bugsplat/show_bug.cgi?id=99232 |
|
12 * |
|
13 * eval("function f(){}function g(){}") at top level is an error for JS1.2 |
|
14 and above (missing ; between named function expressions), but declares f |
|
15 and g as functions below 1.2. |
|
16 * |
|
17 * Fails to produce error regardless of version: |
|
18 * js> version(100) |
|
19 120 |
|
20 js> eval("function f(){}function g(){}") |
|
21 js> version(120); |
|
22 100 |
|
23 js> eval("function f(){}function g(){}") |
|
24 js> |
|
25 * Author: christine@netscape.com |
|
26 * Date: 11 August 1998 |
|
27 */ |
|
28 var SECTION = "function-001.js"; |
|
29 var VERSION = "JS1_1"; |
|
30 var TITLE = "functions not separated by semicolons are not errors in version 110 "; |
|
31 var BUGNUMBER="99232"; |
|
32 |
|
33 startTest(); |
|
34 writeHeaderToLog( SECTION + " "+ TITLE); |
|
35 |
|
36 result = "passed"; |
|
37 |
|
38 new TestCase( |
|
39 SECTION, |
|
40 "eval(\"function f(){}function g(){}\")", |
|
41 void 0, |
|
42 eval("function f(){}function g(){}") ); |
|
43 |
|
44 test(); |
|
45 |