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

Unified Diff: third_party/WebKit/Source/devtools/front_end/formatter_worker/ESTreeWalker.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/formatter_worker/ESTreeWalker.js
diff --git a/third_party/WebKit/Source/devtools/front_end/formatter_worker/ESTreeWalker.js b/third_party/WebKit/Source/devtools/front_end/formatter_worker/ESTreeWalker.js
index 5d266d55d65ae86b9aa08d5c7b07d1297ccea482..c42e7878e41ddc547dbb49b3cdfb42259e197e03 100644
--- a/third_party/WebKit/Source/devtools/front_end/formatter_worker/ESTreeWalker.js
+++ b/third_party/WebKit/Source/devtools/front_end/formatter_worker/ESTreeWalker.js
@@ -12,7 +12,7 @@ WebInspector.ESTreeWalker = function(beforeVisit, afterVisit)
this._beforeVisit = beforeVisit;
this._afterVisit = afterVisit || new Function();
this._walkNulls = false;
-}
+};
/** @typedef {!Object} WebInspector.ESTreeWalker.SkipSubtree */
WebInspector.ESTreeWalker.SkipSubtree = {};
@@ -93,7 +93,7 @@ WebInspector.ESTreeWalker.prototype = {
for (var i = 0; i < nodeArray.length; ++i)
this._innerWalk(nodeArray[i], parentNode);
},
-}
+};
/** @enum {!Array.<string>} */
WebInspector.ESTreeWalker._walkOrder = {
@@ -148,4 +148,4 @@ WebInspector.ESTreeWalker._walkOrder = {
"WhileStatement": ["test", "body"],
"WithStatement": ["object", "body"],
"YieldExpression": ["argument"]
-}
+};

Powered by Google App Engine
This is Rietveld 408576698