js/src/tests/ecma_2/Exceptions/expression-013.js

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:45879a7d4a30
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: expression-013.js
9 Corresponds To: ecma/Expressions/11.2.2-8-n.js
10 ECMA Section: 11.2.2. The new operator
11 Description:
12 Author: christine@netscape.com
13 Date: 12 november 1997
14 */
15 var SECTION = "expression-013";
16 var VERSION = "JS1_4";
17 var TITLE = "The new operator";
18 var BUGNUMBER= "327765";
19
20 startTest();
21 writeHeaderToLog( SECTION + " "+ TITLE);
22
23 var NUMBER = new Number(1);
24
25 var result = "Failed";
26 var exception = "No exception thrown";
27 var expect = "Passed";
28
29 try {
30 result = new NUMBER();
31 } catch ( e ) {
32 result = expect;
33 exception = e.toString();
34 }
35
36 new TestCase(
37 SECTION,
38 "NUMBER = new Number(1); result = new NUMBER()" +
39 " (threw " + exception +")",
40 expect,
41 result );
42
43 test();
44

mercurial