| 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 print("Check that stepInto at then end of the script go to next user script inst
ead InjectedScriptSource.js."); | |
| 6 | |
| 7 InspectorTest.evaluateInPage( | |
| 8 `function foo() | |
| 9 { | |
| 10 return 239; | |
| 11 }`); | |
| 12 | |
| 13 InspectorTest.sendCommandOrDie("Debugger.enable", {}); | |
| 14 InspectorTest.eventHandler["Debugger.paused"] = debuggerPaused; | |
| 15 InspectorTest.sendCommandOrDie("Runtime.evaluate", { "expression": "(function bo
o() { setTimeout(foo, 0); debugger; })()" }); | |
| 16 | |
| 17 var actions = [ "stepInto", "stepInto", "stepInto" ]; | |
| 18 function debuggerPaused(result) | |
| 19 { | |
| 20 InspectorTest.log("Stack trace:"); | |
| 21 for (var callFrame of result.params.callFrames) | |
| 22 InspectorTest.log(callFrame.functionName + ":" + callFrame.location.lineNumb
er + ":" + callFrame.location.columnNumber); | |
| 23 InspectorTest.log(""); | |
| 24 | |
| 25 var action = actions.shift(); | |
| 26 if (!action) { | |
| 27 InspectorTest.sendCommandOrDie("Debugger.resume", {}, () => InspectorTest.co
mpleteTest()); | |
| 28 return; | |
| 29 } | |
| 30 InspectorTest.log("Perform " + action); | |
| 31 InspectorTest.sendCommandOrDie("Debugger." + action, {}); | |
| 32 } | |
| OLD | NEW |