| Index: third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPropertiesSection.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPropertiesSection.js b/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPropertiesSection.js
|
| index 24307f6add19147fe4b8ab407041ca07726214c1..e4731e87f991fd9dfe089f354655f702d76bce6a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPropertiesSection.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPropertiesSection.js
|
| @@ -657,7 +657,7 @@ ObjectUI.ObjectPropertyTreeElement = class extends UI.TreeElement {
|
| regex.lastIndex = 0;
|
| var match = regex.exec(content);
|
| while (match) {
|
| - ranges.push(new Common.SourceRange(match.index, match[0].length));
|
| + ranges.push(new TextUtils.SourceRange(match.index, match[0].length));
|
| match = regex.exec(content);
|
| }
|
| if (ranges.length)
|
|
|