Chromium Code Reviews| Index: test/mjsunit/simple-constructor.js |
| diff --git a/test/mjsunit/simple-constructor.js b/test/mjsunit/simple-constructor.js |
| old mode 100755 |
| new mode 100644 |
| index e9ae921009ec80acb08e597099a2a64dba15382c..968ae041132378cf65357c83cb5c5a4cf72d219d |
| --- a/test/mjsunit/simple-constructor.js |
| +++ b/test/mjsunit/simple-constructor.js |
| @@ -123,18 +123,17 @@ for (var i = 0; i < 10; i++) { |
| } |
| function g(){ |
| - this.x=1 |
| + this.x = 1; |
| } |
| o = new g(); |
| assertEquals(1, o.x); |
| o = new g(); |
| assertEquals(1, o.x); |
| -g.prototype = {y:2} |
| +g.prototype = {y:2}; |
| o = new g(); |
| assertEquals(1, o.x); |
| assertEquals(2, o.y); |
| o = new g(); |
| assertEquals(1, o.x); |
| assertEquals(2, o.y); |
| - |