|
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: lexical-001.js |
|
9 CorrespondsTo: ecma/LexicalConventions/7.2.js |
|
10 ECMA Section: 7.2 Line Terminators |
|
11 Description: - readability |
|
12 - separate tokens |
|
13 - may occur between any two tokens |
|
14 - cannot occur within any token, not even a string |
|
15 - affect the process of automatic semicolon insertion. |
|
16 |
|
17 white space characters are: |
|
18 unicode name formal name string representation |
|
19 \u000A line feed <LF> \n |
|
20 \u000D carriage return <CR> \r |
|
21 |
|
22 this test uses onerror to capture line numbers. because |
|
23 we use on error, we can only have one test case per file. |
|
24 |
|
25 Author: christine@netscape.com |
|
26 Date: 11 september 1997 |
|
27 */ |
|
28 var SECTION = "lexical-001"; |
|
29 var VERSION = "JS1_4"; |
|
30 var TITLE = "Line Terminators"; |
|
31 |
|
32 startTest(); |
|
33 writeHeaderToLog( SECTION + " "+ TITLE); |
|
34 |
|
35 var result = "Failed"; |
|
36 var exception = "No exception thrown"; |
|
37 var expect = "Passed"; |
|
38 |
|
39 try { |
|
40 result = eval("\r\n\expect"); |
|
41 } catch ( e ) { |
|
42 exception = e.toString(); |
|
43 } |
|
44 |
|
45 new TestCase( |
|
46 SECTION, |
|
47 "OBJECT = new Object; result = new OBJECT()" + |
|
48 " (threw " + exception +")", |
|
49 expect, |
|
50 result ); |
|
51 |
|
52 test(); |