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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js
index 42b8b5d6d6722772e9d3f2a353322e0e1ef93205..2076cae469510e07f159060bf4bdf2c4ab811b88 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptCompiler.js
@@ -10,7 +10,7 @@ WebInspector.JavaScriptCompiler = function(sourceFrame)
{
this._sourceFrame = sourceFrame;
this._compiling = false;
-}
+};
WebInspector.JavaScriptCompiler.CompileDelay = 1000;
@@ -78,4 +78,4 @@ WebInspector.JavaScriptCompiler.prototype = {
},
_compilationFinishedForTest: function() {}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698