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

Unified Diff: third_party/WebKit/Source/devtools/front_end/formatter_worker/FormattedContentBuilder.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/FormattedContentBuilder.js
diff --git a/third_party/WebKit/Source/devtools/front_end/formatter_worker/FormattedContentBuilder.js b/third_party/WebKit/Source/devtools/front_end/formatter_worker/FormattedContentBuilder.js
index d11977ae2b55f6cb34219f3af9879179c0c5ed71..b454ef2f0430890f4c12355662b55e846848c887 100644
--- a/third_party/WebKit/Source/devtools/front_end/formatter_worker/FormattedContentBuilder.js
+++ b/third_party/WebKit/Source/devtools/front_end/formatter_worker/FormattedContentBuilder.js
@@ -26,7 +26,7 @@ WebInspector.FormattedContentBuilder = function(indentString)
this._softSpace = false;
this._hardSpaces = 0;
this._enforceSpaceBetweenWords = true;
-}
+};
WebInspector.FormattedContentBuilder.prototype = {
/**
@@ -133,7 +133,7 @@ WebInspector.FormattedContentBuilder.prototype = {
*/
_indent: function()
{
- var cachedValue = this._cachedIndents.get(this._nestingLevel)
+ var cachedValue = this._cachedIndents.get(this._nestingLevel);
if (cachedValue)
return cachedValue;
@@ -168,5 +168,5 @@ WebInspector.FormattedContentBuilder.prototype = {
this._mapping.formatted.push(this._formattedContentLength);
this._lastFormattedPosition = this._formattedContentLength;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698