Index: Source/devtools/front_end/DebuggerModel.js |
diff --git a/Source/devtools/front_end/DebuggerModel.js b/Source/devtools/front_end/DebuggerModel.js |
index 67e47e721a32ca6fe0004f0a9a89c5c6492781bc..be1728b66a5302da4b5e7e646f5d9c2f121f45fd 100644 |
--- a/Source/devtools/front_end/DebuggerModel.js |
+++ b/Source/devtools/front_end/DebuggerModel.js |
@@ -199,25 +199,6 @@ WebInspector.DebuggerModel.prototype = { |
this._agent.continueToLocation(rawLocation); |
}, |
- /** |
- * @param {!WebInspector.DebuggerModel.Location} rawLocation |
- */ |
- stepIntoSelection: function(rawLocation) |
- { |
- /** |
- * @param {!WebInspector.DebuggerModel.Location} requestedLocation |
- * @param {?string} error |
- * @this {WebInspector.DebuggerModel} |
- */ |
- function callback(requestedLocation, error) |
- { |
- if (error) |
- return; |
- this._pendingStepIntoLocation = requestedLocation; |
- }; |
- this._agent.continueToLocation(rawLocation, true, callback.bind(this, rawLocation)); |
- }, |
- |
stepInto: function() |
{ |
/** |
@@ -482,19 +463,6 @@ WebInspector.DebuggerModel.prototype = { |
*/ |
_pausedScript: function(callFrames, reason, auxData, breakpointIds, asyncStackTrace) |
{ |
- if (this._pendingStepIntoLocation) { |
- var requestedLocation = this._pendingStepIntoLocation; |
- delete this._pendingStepIntoLocation; |
- |
- if (callFrames.length > 0) { |
- var topLocation = callFrames[0].location; |
- if (topLocation.lineNumber == requestedLocation.lineNumber && topLocation.columnNumber == requestedLocation.columnNumber && topLocation.scriptId == requestedLocation.scriptId) { |
- this.stepInto(); |
- return; |
- } |
- } |
- } |
- |
this._setDebuggerPausedDetails(new WebInspector.DebuggerPausedDetails(this, callFrames, reason, auxData, breakpointIds, asyncStackTrace)); |
}, |
@@ -979,30 +947,6 @@ WebInspector.DebuggerModel.CallFrame.prototype = { |
}, |
/** |
- * @param {function(!Array.<!DebuggerAgent.Location>)} callback |
- */ |
- getStepIntoLocations: function(callback) |
- { |
- if (this._stepInLocations) { |
- callback(this._stepInLocations.slice(0)); |
- return; |
- } |
- /** |
- * @param {?string} error |
- * @param {!Array.<!DebuggerAgent.Location>=} stepInPositions |
- * @this {WebInspector.DebuggerModel.CallFrame} |
- */ |
- function getStepInPositionsCallback(error, stepInPositions) |
- { |
- if (error) |
- return; |
- this._stepInLocations = stepInPositions; |
- callback(this._stepInLocations.slice(0)); |
- } |
- this._debuggerAgent.getStepInPositions(this.id, getStepInPositionsCallback.bind(this)); |
- }, |
- |
- /** |
* @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate |
* @return {!WebInspector.LiveLocation} |
*/ |