OLD | NEW |
| (Empty) |
1 // Copyright 2016 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 var Debug = debug.Debug; | |
7 | |
8 var break_count = 0; | |
9 var exception = null; | |
10 | |
11 function listener(event, exec_state, event_data, data) { | |
12 if (event != Debug.DebugEvent.Break) return; | |
13 try { | |
14 break_count++; | |
15 var line = exec_state.frame(0).sourceLineText(); | |
16 assertTrue(line.indexOf(`B${break_count}`) > 0); | |
17 } catch (e) { | |
18 exception = e; | |
19 } | |
20 } | |
21 | |
22 Debug.setListener(listener); | |
23 | |
24 function g() { | |
25 throw 1; | |
26 } | |
27 | |
28 function f() { | |
29 try { | |
30 g(); // B1 | |
31 } catch (e) {} | |
32 assertEquals(2, break_count); // B2 | |
33 return 1; // B3 | |
34 } | |
35 | |
36 Debug.setBreakPoint(f, 2, 0); | |
37 Debug.setBreakPoint(f, 4, 1); | |
38 Debug.setBreakPoint(f, 5, 1); | |
39 | |
40 f(); | |
41 | |
42 assertEquals(3, break_count); | |
43 assertNull(exception); | |
44 | |
45 Debug.setListener(null); | |
OLD | NEW |