~ubuntu-branches/ubuntu/trusty/mozjs17/trusty

« back to all changes in this revision

Viewing changes to js/src/tests/ecma_2/Exceptions/lexical-002.js

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2013-05-25 12:24:23 UTC
  • Revision ID: package-import@ubuntu.com-20130525122423-zmxucrhtensw90xy
Tags: upstream-17.0.0
ImportĀ upstreamĀ versionĀ 17.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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-002.js
 
9
   Corresponds To:     ecma/LexicalConventions/7.2-3-n.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-002";
 
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
  "result=eval(\"\r\nexpect\")" +
 
48
  " (threw " + exception +")",
 
49
  expect,
 
50
  result );
 
51
 
 
52
test();