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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.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/JavaScriptSourceFrame.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
index 2bc396e53fdf6783b96678a375327bf12fb154e3..e20a94f1a45b96f34878bb08169bcae914d71d36 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
@@ -75,7 +75,7 @@ WebInspector.JavaScriptSourceFrame = function(uiSourceCode)
this._showBlackboxInfobarIfNeeded();
/** @type {!Map.<number, !Element>} */
this._valueWidgets = new Map();
-}
+};
WebInspector.JavaScriptSourceFrame.prototype = {
/**
@@ -978,7 +978,7 @@ WebInspector.JavaScriptSourceFrame.prototype = {
this._prettyPrintInfobar.setCloseCallback(() => delete this._prettyPrintInfobar);
var toolbar = new WebInspector.Toolbar("");
- var button = new WebInspector.ToolbarButton("", "format-toolbar-item")
+ var button = new WebInspector.ToolbarButton("", "format-toolbar-item");
toolbar.appendToolbarItem(button);
toolbar.element.style.display = "inline-block";
toolbar.element.style.verticalAlign = "middle";
@@ -1075,4 +1075,4 @@ WebInspector.JavaScriptSourceFrame.prototype = {
},
__proto__: WebInspector.UISourceCodeFrame.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698