summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/S9.9_A6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/S9.9_A6.js')
-rw-r--r--test/built-ins/Object/S9.9_A6.js16
1 files changed, 7 insertions, 9 deletions
diff --git a/test/built-ins/Object/S9.9_A6.js b/test/built-ins/Object/S9.9_A6.js
index 566177e3a..b6c19d4a6 100644
--- a/test/built-ins/Object/S9.9_A6.js
+++ b/test/built-ins/Object/S9.9_A6.js
@@ -9,33 +9,31 @@ es5id: 9.9_A6
description: Converting from Objects to Object
---*/
-function MyObject(val) {
- this.value = val;
- this.valueOf = function() {
- return this.value;
- }
+function MyObject( val ) {
+ this.value = val;
+ this.valueOf = function (){ return this.value; }
}
var x = new MyObject(1);
var y = Object(x);
// CHECK#1
-if (y.valueOf() !== x.valueOf()) {
+if (y.valueOf() !== x.valueOf()){
$ERROR('#1: Object(obj).valueOf() === obj.valueOf(). Actual: ' + (Object(obj).valueOf()));
}
// CHECK#2
-if (typeof y !== typeof x) {
+if (typeof y !== typeof x){
$ERROR('#2: typeof Object(obj) === typeof obj. Actual: ' + (typeof Object(obj)));
}
// CHECK#3
-if (y.constructor.prototype !== x.constructor.prototype) {
+if (y.constructor.prototype !== x.constructor.prototype){
$ERROR('#3: Object(obj).constructor.prototype === obj.constructor.prototype. Actual: ' + (Object(obj).constructor.prototype));
}
// CHECK#4
-if (y !== x) {
+if (y !== x){
$ERROR('#4: Object(obj) === obj');
}