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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.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/JavaScriptBreakpointsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
index 9676f9360c0d2980463cb6edb445a0e50d10c416..2f845ccdd41f0c17477d2d196f81d176626b04cd 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
@@ -32,7 +32,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane = function()
this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointsActiveStateChanged, this._breakpointsActiveStateChanged, this);
this._breakpointsActiveStateChanged();
this._update();
-}
+};
WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
_emptyElementContextMenu: function(event)
@@ -88,7 +88,7 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
*/
function didRequestContent(content)
{
- var lineNumber = uiLocation.lineNumber
+ var lineNumber = uiLocation.lineNumber;
var columnNumber = uiLocation.columnNumber;
var text = new WebInspector.Text(content || "");
if (lineNumber < text.lineCount()) {
@@ -274,4 +274,4 @@ WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698