summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/object/S8.6.2_A6.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/types/object/S8.6.2_A6.js')
-rw-r--r--js/src/tests/test262/language/types/object/S8.6.2_A6.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/types/object/S8.6.2_A6.js b/js/src/tests/test262/language/types/object/S8.6.2_A6.js
new file mode 100644
index 0000000000..b6f729d70f
--- /dev/null
+++ b/js/src/tests/test262/language/types/object/S8.6.2_A6.js
@@ -0,0 +1,30 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ [[Construct]] constructs an object. Invoked via the new operator. Objects
+ that implement this internal method are called constructors
+es5id: 8.6.2_A6
+description: Create a few Objects via the new operator
+---*/
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#1
+var objInstance=new Object;
+if (objInstance.constructor !== Object){
+ throw new Test262Error('#1: var objInstance=new Object; objInstance.constructor === Object. Actual: ' + (objInstance.constructor));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+//////////////////////////////////////////////////////////////////////////////
+//CHECK#2
+var numInstance=new Number;
+if (numInstance.constructor !== Number){
+ throw new Test262Error('#2: var numInstance=new Number; numInstance.constructor === Number. Actual: ' + (numInstance.constructor));
+}
+//
+//////////////////////////////////////////////////////////////////////////////
+
+reportCompare(0, 0);