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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/SearchConfig.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/workspace/SearchConfig.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/SearchConfig.js b/third_party/WebKit/Source/devtools/front_end/workspace/SearchConfig.js
index ac1d5dc60fc419870ffeb68e182eaf41ba578e2a..167ce95e5c453e8549c4db56f99f30742b722f02 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/SearchConfig.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/SearchConfig.js
@@ -15,7 +15,7 @@ WebInspector.SearchConfig = function(query, ignoreCase, isRegex)
this._ignoreCase = ignoreCase;
this._isRegex = isRegex;
this._parse();
-}
+};
/** @typedef {!{regex: !RegExp, isNegative: boolean}} */
WebInspector.SearchConfig.RegexQuery;
@@ -27,7 +27,7 @@ WebInspector.SearchConfig.RegexQuery;
WebInspector.SearchConfig.fromPlainObject = function(object)
{
return new WebInspector.SearchConfig(object.query, object.ignoreCase, object.isRegex);
-}
+};
WebInspector.SearchConfig.prototype = {
/**
@@ -178,7 +178,7 @@ WebInspector.SearchConfig.prototype = {
}
return new WebInspector.SearchConfig.QueryTerm(result, isNegative);
}
-}
+};
/**
* @constructor
@@ -189,4 +189,4 @@ WebInspector.SearchConfig.QueryTerm = function(text, isNegative)
{
this.text = text;
this.isNegative = isNegative;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698