| 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 --allow-natives-syntax | |
| 6 | 5 |
| 7 var Debug = debug.Debug; | 6 var Debug = debug.Debug; |
| 8 var expected = | 7 var expected = |
| 9 ["debugger;", "var x = y;", "var b = 2;", "Debug.setListener(null);"]; | 8 ["debugger;", "var x = y;", "var b = 2;", "Debug.setListener(null);"]; |
| 10 var log = []; | 9 var log = []; |
| 11 | 10 |
| 12 function listener(event, exec_state, event_data, data) { | 11 function listener(event, exec_state, event_data, data) { |
| 13 if (event != Debug.DebugEvent.Break) return; | 12 if (event != Debug.DebugEvent.Break) return; |
| 14 try { | 13 try { |
| 15 log.push(exec_state.frame(0).sourceLineText().trimLeft()); | 14 log.push(exec_state.frame(0).sourceLineText().trimLeft()); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 30 | 29 |
| 31 try { | 30 try { |
| 32 %Call(f, {}); | 31 %Call(f, {}); |
| 33 } catch (e) { | 32 } catch (e) { |
| 34 var b = 2; | 33 var b = 2; |
| 35 } | 34 } |
| 36 | 35 |
| 37 Debug.setListener(null); | 36 Debug.setListener(null); |
| 38 | 37 |
| 39 assertEquals(expected, log); | 38 assertEquals(expected, log); |
| OLD | NEW |