| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Flags: --expose-debug-as debug | |
| 6 | 5 |
| 7 var Debug = debug.Debug; | 6 var Debug = debug.Debug; |
| 8 var exception = null; | 7 var exception = null; |
| 9 var breaks = []; | 8 var breaks = []; |
| 10 | 9 |
| 11 function listener(event, exec_state, event_data, data) { | 10 function listener(event, exec_state, event_data, data) { |
| 12 if (event != Debug.DebugEvent.Break) return; | 11 if (event != Debug.DebugEvent.Break) return; |
| 13 try { | 12 try { |
| 14 breaks.push(exec_state.frame(0).sourceLineText().trimLeft()); | 13 breaks.push(exec_state.frame(0).sourceLineText().trimLeft()); |
| 15 exec_state.prepareStep(Debug.StepAction.StepIn); | 14 exec_state.prepareStep(Debug.StepAction.StepIn); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 38 "print(1);", | 37 "print(1);", |
| 39 "print(2);", | 38 "print(2);", |
| 40 "print(3);", | 39 "print(3);", |
| 41 "resolve();", | 40 "resolve();", |
| 42 "}", | 41 "}", |
| 43 "Debug.setListener(null);" | 42 "Debug.setListener(null);" |
| 44 ]; | 43 ]; |
| 45 | 44 |
| 46 assertEquals(expected_breaks, breaks); | 45 assertEquals(expected_breaks, breaks); |
| 47 assertNull(exception); | 46 assertNull(exception); |
| OLD | NEW |