| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| index 051298d8556eaccc8c86f092f5452dd43a68203c..e72312d9f464337e250eddbf21d9e207af4eafb2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| @@ -862,7 +862,7 @@ Sources.JavaScriptSourceFrame = class extends SourceFrame.UISourceCodeFrame {
|
| var functionUILocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocation(
|
| /** @type {!SDK.DebuggerModel.Location} */ (callFrame.functionLocation()));
|
| var executionUILocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocation(callFrame.location());
|
| - if (functionUILocation.uiSourceCode !== this._debuggerSourceCode ||
|
| + if (!functionUILocation || !executionUILocation || functionUILocation.uiSourceCode !== this._debuggerSourceCode ||
|
| executionUILocation.uiSourceCode !== this._debuggerSourceCode) {
|
| this._clearValueWidgets();
|
| return;
|
|
|