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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/treeoutline.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/ui/treeoutline.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.js b/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.js
index d89fc48f5685235f4c4d4a9ebd91b899ad30fd3d..fbfb9d23d7b0dab1751bd8c0bf949f6746f1ac01 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/treeoutline.js
@@ -54,7 +54,7 @@ TreeOutline.Events = {
ElementExpanded: Symbol("ElementExpanded"),
ElementCollapsed: Symbol("ElementCollapsed"),
ElementSelected: Symbol("ElementSelected")
-}
+};
TreeOutline.prototype = {
_createRootElement: function()
@@ -309,7 +309,7 @@ TreeOutline.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -348,7 +348,7 @@ TreeOutlineInShadow.prototype = {
},
__proto__: TreeOutline.prototype
-}
+};
/**
* @constructor
@@ -592,7 +592,7 @@ TreeElement.prototype = {
for (var i = 0; this._children && i < this._children.length; ++i) {
var child = this._children[i];
- child.previousSibling = null
+ child.previousSibling = null;
child.nextSibling = null;
child.parent = null;
@@ -1157,4 +1157,4 @@ TreeElement.prototype = {
var left = this._listItemNode.totalOffsetLeft() + computedLeftPadding;
return event.pageX >= left && event.pageX <= left + TreeElement._ArrowToggleWidth && this._expandable;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698