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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/UIString.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/UIString.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/UIString.js b/third_party/WebKit/Source/devtools/front_end/common/UIString.js
index 8be8c9e56e13a57e94558e12dd6db1fb8875178a..d4da1c5c2a7913d4d7227cd24cf8104b908d96a8 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/UIString.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/UIString.js
@@ -37,7 +37,7 @@
WebInspector.UIString = function(string, vararg)
{
return String.vsprintf(WebInspector.localize(string), Array.prototype.slice.call(arguments, 1));
-}
+};
/**
* @param {string} string
@@ -56,7 +56,7 @@ WebInspector.UIString.capitalize = function(string, vararg)
else
capitalized = localized.replace(/\^(.)/g, function(str, char) { return char.toUpperCase(); });
return String.vsprintf(capitalized, Array.prototype.slice.call(arguments, 1));
-}
+};
/**
* @param {string} platform
@@ -64,7 +64,7 @@ WebInspector.UIString.capitalize = function(string, vararg)
WebInspector.setLocalizationPlatform = function(platform)
{
WebInspector._useLowerCaseMenuTitles = platform === "windows";
-}
+};
/**
* @param {string} string
@@ -73,7 +73,7 @@ WebInspector.setLocalizationPlatform = function(platform)
WebInspector.localize = function(string)
{
return string;
-}
+};
/**
* @constructor
@@ -85,7 +85,7 @@ WebInspector.UIStringFormat = function(format)
this._localizedFormat = WebInspector.localize(format);
/** @type {!Array.<!Object>} */
this._tokenizedFormat = String.tokenizeFormatString(this._localizedFormat, String.standardFormatters);
-}
+};
/**
* @param {string} a
@@ -95,7 +95,7 @@ WebInspector.UIStringFormat = function(format)
WebInspector.UIStringFormat._append = function(a, b)
{
return a + b;
-}
+};
WebInspector.UIStringFormat.prototype = {
/**
@@ -107,4 +107,4 @@ WebInspector.UIStringFormat.prototype = {
return String.format(this._localizedFormat, arguments,
String.standardFormatters, "", WebInspector.UIStringFormat._append, this._tokenizedFormat).formattedResult;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698