|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
4 /** |
|
5 * [[Construct]] constructs an object. Invoked via the new operator. Objects that implement this internal method are called constructors |
|
6 * |
|
7 * @path ch08/8.6/8.6.2/S8.6.2_A6.js |
|
8 * @description Create a few Objects via the new operator |
|
9 */ |
|
10 |
|
11 ////////////////////////////////////////////////////////////////////////////// |
|
12 //CHECK#1 |
|
13 var objInstance=new Object; |
|
14 if (objInstance.constructor !== Object){ |
|
15 $ERROR('#1: var objInstance=new Object; objInstance.constructor === Object. Actual: ' + (objInstance.constructor)); |
|
16 } |
|
17 // |
|
18 ////////////////////////////////////////////////////////////////////////////// |
|
19 |
|
20 ////////////////////////////////////////////////////////////////////////////// |
|
21 //CHECK#2 |
|
22 var numInstance=new Number; |
|
23 if (numInstance.constructor !== Number){ |
|
24 $ERROR('#2: var numInstance=new Number; numInstance.constructor === Number. Actual: ' + (numInstance.constructor)); |
|
25 } |
|
26 // |
|
27 ////////////////////////////////////////////////////////////////////////////// |
|
28 |