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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/TextUtils.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/common/TextUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/TextUtils.js b/third_party/WebKit/Source/devtools/front_end/common/TextUtils.js
index a067c39ea2d75041f9bb28542ed34a6bc2a0c6b9..356a49cddfcbf2e3380cce88776a4928723a1c7e 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/TextUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/TextUtils.js
@@ -206,7 +206,7 @@ WebInspector.TextUtils = {
doSplit(stringAfterMatches, regexIndex + 1, startIndex + currentIndex);
}
}
-}
+};
WebInspector.TextUtils._SpaceCharRegex = /\s/;
@@ -218,7 +218,7 @@ WebInspector.TextUtils.Indent = {
FourSpaces: " ",
EightSpaces: " ",
TabCharacter: "\t"
-}
+};
/**
* @constructor
@@ -233,7 +233,7 @@ WebInspector.TextUtils.BalancedJSONTokenizer = function(callback, findMultiple)
this._buffer = "";
this._findMultiple = findMultiple || false;
this._closingDoubleQuoteRegex = /[^\\](?:\\\\)*"/g;
-}
+};
WebInspector.TextUtils.BalancedJSONTokenizer.prototype = {
/**
@@ -292,12 +292,12 @@ WebInspector.TextUtils.BalancedJSONTokenizer.prototype = {
{
return this._buffer;
}
-}
+};
/**
* @interface
*/
-WebInspector.TokenizerFactory = function() { }
+WebInspector.TokenizerFactory = function() { };
WebInspector.TokenizerFactory.prototype = {
/**
@@ -305,4 +305,4 @@ WebInspector.TokenizerFactory.prototype = {
* @return {function(string, function(string, ?string, number, number))}
*/
createTokenizer: function(mimeType) { }
-}
+};

Powered by Google App Engine
This is Rietveld 408576698