| Index: Source/devtools/front_end/DefaultTextEditor.js
|
| diff --git a/Source/devtools/front_end/DefaultTextEditor.js b/Source/devtools/front_end/DefaultTextEditor.js
|
| index 9783478ebdafc42d004b593369453b58dc346888..93abe950edd5d410b97fcad36fe9674aeef4ec5e 100644
|
| --- a/Source/devtools/front_end/DefaultTextEditor.js
|
| +++ b/Source/devtools/front_end/DefaultTextEditor.js
|
| @@ -1429,7 +1429,7 @@ WebInspector.TextEditorMainPanel.prototype = {
|
| return 0;
|
| return value - object.startColumn;
|
| }
|
| - var index = binarySearch(column, highlight.ranges, compare);
|
| + var index = highlight.ranges.binaryIndexOf(column, compare);
|
| if (index >= 0) {
|
| var range = highlight.ranges[index];
|
| return {
|
|
|