Chromium Code Reviews| Index: test/mjsunit/regress/regress-crbug-323936.js |
| diff --git a/test/mjsunit/regress/regress-crbug-323936.js b/test/mjsunit/regress/regress-crbug-323936.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0695e86bfa010acd62316ae3748b589edcb894bc |
| --- /dev/null |
| +++ b/test/mjsunit/regress/regress-crbug-323936.js |
| @@ -0,0 +1,44 @@ |
| +// Copyright 2014 the V8 project authors. All rights reserved. |
| +// 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 = debug.Debug; |
| + |
| +var step = 0; |
| +var exception = null; |
| + |
| +function listener(event, exec_state, event_data, data) { |
| + if (event != Debug.DebugEvent.Break) return; |
| + try { |
| + if (step == 0) { |
| + assertEquals("Error", exec_state.frame(0).evaluate("e").value()); |
| + exec_state.frame(0).evaluate("e = 'foo'"); |
|
aandrey
2014/09/25 06:19:06
Below is the check that changes above materialized
|
| + } else { |
| + assertEquals("Argument", exec_state.frame(0).evaluate("e").value()); |
| + exec_state.frame(0).evaluate("e = 'bar'"); |
| + } |
| + step++; |
| + } catch (e) { |
| + print(e + e.stack); |
| + exception = e; |
| + } |
| +} |
| + |
| +Debug.setListener(listener); |
| + |
| +function f(e) { |
|
aandrey
2014/09/25 06:19:06
f(e, x)
|
| + try { |
| + throw "Error"; |
| + } catch(e) { |
| + debugger; |
| + assertEquals("foo", e); |
| + } |
| + debugger; |
| + assertEquals("bar", e); |
|
aandrey
2014/09/25 06:19:06
assertEquals("modified", x);
|
| +} |
| + |
| +f("Argument") |
| +assertNull(exception); |
| +assertEquals(2, step); |