Index: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
index bf0207cf8589ded739e92883e8e852c8ded1c6b8..2901f04e1ab88510d2deace66d370b38c4a264a9 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js |
@@ -57,7 +57,7 @@ WebInspector.WatchExpressionsSidebarPane = function() |
WebInspector.context.addFlavorChangeListener(WebInspector.DebuggerModel.CallFrame, this.update, this); |
this._linkifier = new WebInspector.Linkifier(); |
this.update(); |
-} |
+}; |
WebInspector.WatchExpressionsSidebarPane.prototype = { |
/** |
@@ -230,7 +230,7 @@ WebInspector.WatchExpressionsSidebarPane.prototype = { |
}, |
__proto__: WebInspector.ThrottledWidget.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -249,14 +249,14 @@ WebInspector.WatchExpression = function(expression, expandController, linkifier) |
this._createWatchExpression(null); |
this.update(); |
-} |
+}; |
WebInspector.WatchExpression._watchObjectGroupId = "watch-group"; |
/** @enum {symbol} */ |
WebInspector.WatchExpression.Events = { |
ExpressionUpdated: Symbol("ExpressionUpdated") |
-} |
+}; |
WebInspector.WatchExpression.prototype = { |
@@ -460,4 +460,4 @@ WebInspector.WatchExpression.prototype = { |
}, |
__proto__: WebInspector.Object.prototype |
-} |
+}; |