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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.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/sources/CallStackSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
index f70826661b26fe072f23cbfb383f90e56c45cd93..6cc1b15143839fa97d4b016e4c48311be62eb803 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
@@ -42,7 +42,7 @@ WebInspector.CallStackSidebarPane = function()
this.callFrames = [];
this._locationPool = new WebInspector.LiveLocationPool();
this._update();
-}
+};
WebInspector.CallStackSidebarPane.prototype = {
/**
@@ -469,7 +469,7 @@ WebInspector.CallStackSidebarPane.prototype = {
},
__proto__: WebInspector.SimpleView.prototype
-}
+};
/**
* @constructor
@@ -488,7 +488,7 @@ WebInspector.CallStackSidebarPane.CallFrame = function(functionName, location, l
this._debuggerCallFrame = debuggerCallFrame;
this._asyncCallFrame = asyncCallFrame;
WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(location, this._update.bind(this), locationPool);
-}
+};
WebInspector.CallStackSidebarPane.CallFrame.prototype = {
/**
@@ -505,4 +505,4 @@ WebInspector.CallStackSidebarPane.CallFrame.prototype = {
},
__proto__: WebInspector.UIList.Item.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698