Chromium Code Reviews| Index: Source/devtools/front_end/source_frame/CodeMirrorUtils.js |
| diff --git a/Source/devtools/front_end/source_frame/CodeMirrorUtils.js b/Source/devtools/front_end/source_frame/CodeMirrorUtils.js |
| index 330b394808f8daecabb41da46be6b9290c79d095..31d0eb49d2137562e458de1f51c5eb3bb7816e9c 100644 |
| --- a/Source/devtools/front_end/source_frame/CodeMirrorUtils.js |
| +++ b/Source/devtools/front_end/source_frame/CodeMirrorUtils.js |
| @@ -47,7 +47,7 @@ WebInspector.CodeMirrorUtils.toPos = function(range) |
| start: new CodeMirror.Pos(range.startLine, range.startColumn), |
| end: new CodeMirror.Pos(range.endLine, range.endColumn) |
| } |
| -}, |
| +} |
| /** |
| * @param {!CodeMirror.Pos} start |
| @@ -57,7 +57,7 @@ WebInspector.CodeMirrorUtils.toPos = function(range) |
| WebInspector.CodeMirrorUtils.toRange = function(start, end) |
| { |
| return new WebInspector.TextRange(start.line, start.ch, end.line, end.ch); |
| -}, |
| +} |
|
aandrey
2014/06/17 20:58:37
extra line
apavlov
2014/06/18 07:55:13
Done.
|
| WebInspector.CodeMirrorUtils.prototype = { |