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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/CSSProperty.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/sdk/CSSProperty.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSProperty.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSProperty.js
index b7e33a07315371412a47346d9b9c9d19f89cb8de..feedbbe8e0cab2583f84a5679dd5945e20d368de 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSProperty.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSProperty.js
@@ -30,7 +30,7 @@ WebInspector.CSSProperty = function(ownerStyle, index, name, value, important, d
this._active = true;
this._nameRange = null;
this._valueRange = null;
-}
+};
/**
* @param {!WebInspector.CSSStyleDeclaration} ownerStyle
@@ -48,7 +48,7 @@ WebInspector.CSSProperty.parsePayload = function(ownerStyle, index, payload)
var result = new WebInspector.CSSProperty(
ownerStyle, index, payload.name, payload.value, payload.important || false, payload.disabled || false, ("parsedOk" in payload) ? !!payload.parsedOk : true, !!payload.implicit, payload.text, payload.range);
return result;
-}
+};
WebInspector.CSSProperty.prototype = {
_ensureRanges: function()
@@ -297,4 +297,4 @@ WebInspector.CSSProperty.prototype = {
var text = disabled ? "/* " + propertyText + " */" : this.text.substring(2, propertyText.length - 2).trim();
return this.setText(text, true, true);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698