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; |
} |
-} |
+}; |