| Index: Source/devtools/front_end/source_frame/CodeMirrorTextEditor.js
|
| diff --git a/Source/devtools/front_end/source_frame/CodeMirrorTextEditor.js b/Source/devtools/front_end/source_frame/CodeMirrorTextEditor.js
|
| index c8d8f77bf4bff3252a7f5872d8592edcdd9a2c98..4764300ffa8a35887d14a67b06921c413f4e2772 100644
|
| --- a/Source/devtools/front_end/source_frame/CodeMirrorTextEditor.js
|
| +++ b/Source/devtools/front_end/source_frame/CodeMirrorTextEditor.js
|
| @@ -734,7 +734,7 @@ WebInspector.CodeMirrorTextEditor.prototype = {
|
| return null;
|
| return {
|
| startColumn: token.start,
|
| - endColumn: token.end - 1,
|
| + endColumn: token.end,
|
| type: token.type
|
| };
|
| },
|
|
|