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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/Trie.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/Trie.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/Trie.js b/third_party/WebKit/Source/devtools/front_end/common/Trie.js
index 35a28bb3bcf601b29304ca1145f6e890c3c9da86..808622e712c3f114f94109f1362657265fab5852 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/Trie.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/Trie.js
@@ -8,7 +8,7 @@
WebInspector.Trie = function()
{
this.clear();
-}
+};
WebInspector.Trie.prototype = {
/**
@@ -141,4 +141,4 @@ WebInspector.Trie.prototype = {
/** @type {!Array<number>} */
this._freeNodes = [];
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698