| 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 // Check that the we are still in function context when we break on return. | |
| 7 | |
| 8 var Debug = debug.Debug; | |
| 9 | |
| 10 function listener(event, exec_state, event_data, data) { | |
| 11 if (event == Debug.DebugEvent.Break) { | |
| 12 // Access scope details to check the context is correct. | |
| 13 var scope_count = exec_state.frame().scopeCount(); | |
| 14 // Do steps until we reach the global scope again. | |
| 15 exec_state.prepareStep(Debug.StepAction.StepIn); | |
| 16 } | |
| 17 } | |
| 18 | |
| 19 Debug.setListener(listener); | |
| 20 | |
| 21 function f() { | |
| 22 debugger; | |
| 23 | |
| 24 L: with ({x:12}) { | |
| 25 break L; | |
| 26 } | |
| 27 | |
| 28 return; | |
| 29 } | |
| 30 f(); | |
| OLD | NEW |