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 71f1dcc281c4a26c6e2abc487ff3b8c7516be9bc..01856a1f9036fb473d6675ec0b1487ba0052680d 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,8 +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); |
-}, |
- |
+} |
WebInspector.CodeMirrorUtils.prototype = { |
/** |