| Index: test/mjsunit/object-create.js
|
| diff --git a/test/mjsunit/object-create.js b/test/mjsunit/object-create.js
|
| index d8385842a384fd614f374638c290fdbe59a1d3d4..90aa76301886cc269b9c28dc20f2934a7767e603 100644
|
| --- a/test/mjsunit/object-create.js
|
| +++ b/test/mjsunit/object-create.js
|
| @@ -63,8 +63,14 @@ var fooSetter = { foo: { set: function() { return ctr4++; }}};
|
| var fooAmbiguous = { foo: { get: function() { return ctr3++; },
|
| value: 3 }};
|
|
|
| -function valueGet() { ctr5++; return 3 };
|
| -function getterGet() { ctr5++; return function() { return ctr6++; }; };
|
| +function valueGet() {
|
| + ctr5++;
|
| + return 3;
|
| +}
|
| +function getterGet() {
|
| + ctr5++;
|
| + return function() { return ctr6++; };
|
| +}
|
|
|
| // Simple object with prototype, no properties added.
|
| Object.create(protoFoo).foo();
|
| @@ -177,7 +183,7 @@ var magicWritableProps = {
|
| return false;
|
| }}})};
|
|
|
| -var fooNotWritable = Object.create(null, magicWritableProps)
|
| +var fooNotWritable = Object.create(null, magicWritableProps);
|
| assertEquals(1002, ctr6);
|
| assertEquals(4, fooNotWritable.foo);
|
| fooNotWritable.foo = 5;
|
|
|