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

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: 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 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 = {

Powered by Google App Engine
This is Rietveld 408576698