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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.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/elements/PropertyChangeHighlighter.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js b/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
index 1357ca27f65395f1c4d02e3a40a7eaa9a7a8afd1..303df99a7677afa1e9c568366006c11ea96b1390 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
@@ -15,7 +15,7 @@ WebInspector.PropertyChangeHighlighter = function(ssp, cssModel, styleSheetId, r
this._target = cssModel.target();
this._styleSheetId = styleSheetId;
this._range = range;
-}
+};
WebInspector.PropertyChangeHighlighter.prototype = {
/**
@@ -89,7 +89,7 @@ WebInspector.PropertyChangeHighlighter.prototype = {
var endsAfter = outterRange.endLine > innerRange.endLine || (outterRange.endLine === innerRange.endLine && outterRange.endColumn + eps >= innerRange.endColumn);
return startsBefore && endsAfter;
}
-}
+};
/**
* @constructor
@@ -100,7 +100,7 @@ WebInspector.PropertyRevealHighlighter = function(ssp, cssProperty)
{
this._styleSidebarPane = ssp;
this._cssProperty = cssProperty;
-}
+};
WebInspector.PropertyRevealHighlighter.prototype = {
perform: function()
@@ -135,4 +135,4 @@ WebInspector.PropertyRevealHighlighter.prototype = {
{ offset: 1, backgroundColor: "transparent"}
], { duration : 2000, easing: "cubic-bezier(0, 0, 0.2, 1)" });
},
-}
+};

Powered by Google App Engine
This is Rietveld 408576698