| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 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 | 7 |
| 9 var listener_called; | 8 var listener_called; |
| 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) { | 11 if (event == Debug.DebugEvent.Break) { |
| 13 listener_called = true; | 12 listener_called = true; |
| 14 exec_state.frame().allScopes(); | 13 exec_state.frame().allScopes(); |
| 15 } | 14 } |
| 16 } | 15 } |
| 17 | 16 |
| 18 Debug.setListener(listener); | 17 Debug.setListener(listener); |
| 19 | 18 |
| 20 function *generator_local_2(a) { | 19 function *generator_local_2(a) { |
| 21 debugger; | 20 debugger; |
| 22 } | 21 } |
| 23 generator_local_2(1).next(); | 22 generator_local_2(1).next(); |
| 24 | 23 |
| 25 assertTrue(listener_called, "listener not called"); | 24 assertTrue(listener_called, "listener not called"); |
| OLD | NEW |