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 |
-} |
+}; |