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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.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/CharacterIdMap.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js b/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
index 81e1b5df42d8612c4c592d663e57a5a6618ad7bd..b6b96b58f96dfd4d5dbbf3fc52ce388a79cb8c1a 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/CharacterIdMap.js
@@ -13,7 +13,7 @@ WebInspector.CharacterIdMap = function()
/** @type {!Map<string, T>} */
this._characterToElement = new Map();
this._charCode = 33;
-}
+};
WebInspector.CharacterIdMap.prototype = {
/**
@@ -41,4 +41,4 @@ WebInspector.CharacterIdMap.prototype = {
{
return this._characterToElement.get(character) || null;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698