| Index: third_party/WebKit/Source/devtools/front_end/bindings/SASSSourceMapping.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/SASSSourceMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/SASSSourceMapping.js
|
| index b154e819b67e1757fb9796776662991bd2cf2603..72322eb022c5e7054719714222ca860aee18fd64 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/SASSSourceMapping.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/SASSSourceMapping.js
|
| @@ -108,7 +108,8 @@ Bindings.SASSSourceMapping = class {
|
| var entry = sourceMap.findEntry(rawLocation.lineNumber, rawLocation.columnNumber);
|
| if (!entry || !entry.sourceURL)
|
| return null;
|
| - var uiSourceCode = Bindings.NetworkProject.uiSourceCodeForStyleURL(this._workspace, entry.sourceURL, rawLocation.header());
|
| + var uiSourceCode =
|
| + Bindings.NetworkProject.uiSourceCodeForStyleURL(this._workspace, entry.sourceURL, rawLocation.header());
|
| if (!uiSourceCode)
|
| return null;
|
| return uiSourceCode.uiLocation(entry.sourceLineNumber || 0, entry.sourceColumnNumber);
|
|
|