Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1625)

Unified Diff: Source/devtools/front_end/source_frame/CodeMirrorUtils.js

Issue 344443003: DevTools: Code fixes for the Closure compiler roll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = {
/**

Powered by Google App Engine
This is Rietveld 408576698