| Index: test/mjsunit/debug-evaluate-locals-capturing.js
|
| diff --git a/test/mjsunit/debug-evaluate-locals-capturing.js b/test/mjsunit/debug-evaluate-locals-capturing.js
|
| index 6d65861fc7b1628a1887b103fd2ef4d8c46d5d4d..5fdacba85cf65d02e8cb8fc0309b5abc193b1eed 100644
|
| --- a/test/mjsunit/debug-evaluate-locals-capturing.js
|
| +++ b/test/mjsunit/debug-evaluate-locals-capturing.js
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// Flags: --expose-debug-as debug --debug-eval-readonly-locals
|
| +// Flags: --expose-debug-as debug
|
|
|
| Debug = debug.Debug
|
| var exception = null;
|
| @@ -35,7 +35,7 @@ Debug.setListener(listener);
|
| } catch (e) {
|
| assertEquals(0, i);
|
| debugger;
|
| - assertEquals(0, i);
|
| + assertEquals(5, i);
|
| }
|
| }());
|
|
|
|
|