| Index: test/mjsunit/regress/regress-284.js
|
| diff --git a/test/mjsunit/regress/regress-284.js b/test/mjsunit/regress/regress-284.js
|
| index ecfdeeac03040aa3bee138607034450058b89b80..be20f020680ac4032792540459cf2b973546e730 100644
|
| --- a/test/mjsunit/regress/regress-284.js
|
| +++ b/test/mjsunit/regress/regress-284.js
|
| @@ -34,7 +34,7 @@ function continueWithinLoop() {
|
| continue;
|
| }
|
| return result;
|
| -};
|
| +}
|
|
|
| assertEquals("hopla", continueWithinLoop());
|
|
|
| @@ -45,6 +45,6 @@ function breakWithinLoop() {
|
| break;
|
| }
|
| return result;
|
| -};
|
| +}
|
|
|
| assertEquals("hopla", continueWithinLoop());
|
|
|