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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.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/CSSParser.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
index 1c68c7ca697acc576b3cb8486a2ea8ced45f0da5..da7a3627c1e83697c4cd2ff86c9b69cabbee0b08 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSParser.js
@@ -12,12 +12,12 @@ WebInspector.CSSParser = function()
{
this._rules = [];
this._terminated = false;
-}
+};
/** @enum {symbol} */
WebInspector.CSSParser.Events = {
RulesParsed: Symbol("RulesParsed")
-}
+};
WebInspector.CSSParser.prototype = {
/**
@@ -138,7 +138,7 @@ WebInspector.CSSParser.prototype = {
},
__proto__: WebInspector.Object.prototype,
-}
+};
/**
* @typedef {{isLastChunk: boolean, chunk: !Array.<!WebInspector.CSSParser.Rule>}}
@@ -160,7 +160,7 @@ WebInspector.CSSParser.StyleRule = function()
this.columnNumber;
/** @type {!Array.<!WebInspector.CSSParser.Property>} */
this.properties;
-}
+};
/**
* @typedef {{atRule: string, lineNumber: number, columnNumber: number}}
@@ -194,4 +194,4 @@ WebInspector.CSSParser.Property = function()
this.range;
/** @type {(boolean|undefined)} */
this.disabled;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698