| Index: test/mjsunit/regress/regress-962.js
|
| diff --git a/test/mjsunit/regress/regress-962.js b/test/mjsunit/regress/regress-962.js
|
| index 85ada0c8abb905929d2c32c406aa9e94698681c0..b76e3afc434553c257b6ec33be39019b336d7224 100644
|
| --- a/test/mjsunit/regress/regress-962.js
|
| +++ b/test/mjsunit/regress/regress-962.js
|
| @@ -29,7 +29,7 @@
|
|
|
| function L(scope) { this.s = new Object(); }
|
|
|
| -L.prototype.c = function() { return true; }
|
| +L.prototype.c = function() { return true; };
|
|
|
| function F() {
|
| this.l = [new L, new L];
|
| @@ -43,11 +43,11 @@ F.prototype.foo = function () {
|
| g = b[e];
|
| f = g.c.apply(g.s, d);
|
| if (f === false) {
|
| - break
|
| + break;
|
| }
|
| }
|
| - return f
|
| -}
|
| + return f;
|
| +};
|
|
|
|
|
| var ctx = new F;
|
|
|