| // Copyright 2014 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| function breakListener(event, exec_state, event_data, data) { |
| if (event != Debug.DebugEvent.Break) return; |
| exec_state.prepareStep(Debug.StepAction.StepIn); |
| // Assert that the break happens at an intended location. |
| assertTrue(exec_state.frame(0).sourceLineText().indexOf("// break") > 0); |
| Debug.setListener(breakListener); |
| Debug.setBreakPoint(f, 0, 0); // break |
| new Error("123").stack; // break |
| f("this should break"); // break |
| Debug.setListener(null); // break |
| f("this should not break"); |