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

Unified Diff: third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.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/formatter_worker/JavaScriptFormatter.js
diff --git a/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js b/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
index 4616803ecbd56845fb1e5b16faddb001e4f56e82..04c9eadd6347d1c98e09630c66b19a0ac38f3cdc 100644
--- a/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
+++ b/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
@@ -35,7 +35,7 @@
WebInspector.JavaScriptFormatter = function(builder)
{
this._builder = builder;
-}
+};
WebInspector.JavaScriptFormatter.prototype = {
/**
@@ -304,5 +304,5 @@ WebInspector.JavaScriptFormatter.prototype = {
}
return "";
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698