| Index: test/webkit/object-literal-syntax-expected.txt
|
| diff --git a/test/webkit/object-literal-syntax-expected.txt b/test/webkit/object-literal-syntax-expected.txt
|
| index 13b3499cec2358166dc217c9beaeca673cc6d0b9..f9764454c577089d2cad24bd63e99b68c61bb4e5 100644
|
| --- a/test/webkit/object-literal-syntax-expected.txt
|
| +++ b/test/webkit/object-literal-syntax-expected.txt
|
| @@ -27,25 +27,25 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
|
|
|
|
|
| PASS ({a:1, get a(){}}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| -PASS ({a:1, set a(){}}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| +PASS ({a:1, set a(v){}}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| PASS ({get a(){}, a:1}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| -PASS ({set a(){}, a:1}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| +PASS ({set a(v){}, a:1}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| PASS ({get a(){}, get a(){}}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| -PASS ({set a(){}, set a(){}}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| -PASS ({set a(){}, get a(){}, set a(){}}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| +PASS ({set a(v){}, set a(v){}}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| +PASS ({set a(v){}, get a(){}, set a(v){}}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| PASS (function(){({a:1, get a(){}})}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| -PASS (function(){({a:1, set a(){}})}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| +PASS (function(){({a:1, set a(v){}})}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| PASS (function(){({get a(){}, a:1})}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| -PASS (function(){({set a(){}, a:1})}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| +PASS (function(){({set a(v){}, a:1})}) threw exception SyntaxError: Object literal may not have data and accessor property with the same name.
|
| PASS (function(){({get a(){}, get a(){}})}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| -PASS (function(){({set a(){}, set a(){}})}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| -PASS (function(){({set a(){}, get a(){}, set a(){}})}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| +PASS (function(){({set a(v){}, set a(v){}})}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| +PASS (function(){({set a(v){}, get a(){}, set a(v){}})}) threw exception SyntaxError: Object literal may not have multiple get/set accessors with the same name.
|
| PASS ({a:1, a:1, a:1}), true is true
|
| -PASS ({get a(){}, set a(){}}), true is true
|
| -PASS ({set a(){}, get a(){}}), true is true
|
| +PASS ({get a(){}, set a(v){}}), true is true
|
| +PASS ({set a(v){}, get a(){}}), true is true
|
| PASS (function(){({a:1, a:1, a:1})}), true is true
|
| -PASS (function(){({get a(){}, set a(){}})}), true is true
|
| -PASS (function(){({set a(){}, get a(){}})}), true is true
|
| +PASS (function(){({get a(){}, set a(v){}})}), true is true
|
| +PASS (function(){({set a(v){}, get a(){}})}), true is true
|
| PASS successfullyParsed is true
|
|
|
| TEST COMPLETE
|
|
|