| Index: Source/devtools/front_end/SourcesPanel.js
|
| diff --git a/Source/devtools/front_end/SourcesPanel.js b/Source/devtools/front_end/SourcesPanel.js
|
| index e2299c0b041eba6da32aac58e7cb5ef19ba0c79f..c80ef54824bd9109f9334d7e7542e4d04c207006 100644
|
| --- a/Source/devtools/front_end/SourcesPanel.js
|
| +++ b/Source/devtools/front_end/SourcesPanel.js
|
| @@ -583,6 +583,9 @@ WebInspector.SourcesPanel.prototype = {
|
| delete this._skipExecutionLineRevealing;
|
| },
|
|
|
| + /**
|
| + * @param {!WebInspector.DebuggerModel.Location} rawLocation
|
| + */
|
| continueToLocation: function(rawLocation)
|
| {
|
| if (!this._paused)
|
| @@ -591,7 +594,7 @@ WebInspector.SourcesPanel.prototype = {
|
| delete this._skipExecutionLineRevealing;
|
| this._paused = false;
|
| this._clearInterface();
|
| - WebInspector.debuggerModel.continueToLocation(rawLocation);
|
| + rawLocation.continueToLocation();
|
| },
|
|
|
| _toggleBreakpointsClicked: function(event)
|
|
|