OLD | NEW |
| (Empty) |
1 // Copyright 2014 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 | |
6 Debug = debug.Debug | |
7 var exception = null; | |
8 | |
9 function listener(event, exec_state, event_data, data) { | |
10 try { | |
11 if (event == Debug.DebugEvent.Break) { | |
12 exec_state.prepareStep(Debug.StepAction.StepIn); | |
13 } | |
14 } catch (e) { | |
15 exception = e; | |
16 } | |
17 } | |
18 | |
19 Debug.setListener(listener); | |
20 | |
21 function f(x) { | |
22 if (x > 0) %_Call(f, null, x-1); | |
23 } | |
24 | |
25 debugger; | |
26 f(2); | |
27 | |
28 Debug.setListener(null); | |
29 assertNull(exception); | |
OLD | NEW |