| Index: test/mjsunit/regress/regress-crbug-648740.js
|
| diff --git a/test/mjsunit/regress/regress-crbug-600257.js b/test/mjsunit/regress/regress-crbug-648740.js
|
| similarity index 63%
|
| copy from test/mjsunit/regress/regress-crbug-600257.js
|
| copy to test/mjsunit/regress/regress-crbug-648740.js
|
| index 87bd2e39af387cde81f9c9adb15756f8139a03a3..e52d899852433bbe95bcc3c1de54a56b5c738d7f 100644
|
| --- a/test/mjsunit/regress/regress-crbug-600257.js
|
| +++ b/test/mjsunit/regress/regress-crbug-648740.js
|
| @@ -2,12 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// Flags: --stack-size=100
|
| +// Flags: --min-preparse-length=0
|
|
|
| -(function rec() {
|
| - try {
|
| - rec();
|
| - } catch (e) {
|
| - /{/;
|
| +(function () {
|
| + function foo() {
|
| + const arguments = 42;
|
| }
|
| -})();
|
| +})()
|
|
|