Index: third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js |
index ab210f830ec62ef2c5f50a5cc22ecdc741880195..6a2551c9d845356333ae06d5c90dfbdfc59e2906 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js |
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js |
@@ -48,7 +48,7 @@ WebInspector.DefaultScriptMapping = function(debuggerModel, workspace, debuggerW |
this._eventListeners = [ |
debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this) |
]; |
-} |
+}; |
WebInspector.DefaultScriptMapping._scriptSymbol = Symbol("symbol"); |
@@ -59,7 +59,7 @@ WebInspector.DefaultScriptMapping._scriptSymbol = Symbol("symbol"); |
WebInspector.DefaultScriptMapping.scriptForUISourceCode = function(uiSourceCode) |
{ |
return uiSourceCode[WebInspector.DefaultScriptMapping._scriptSymbol] || null; |
-} |
+}; |
WebInspector.DefaultScriptMapping.prototype = { |
/** |
@@ -146,7 +146,7 @@ WebInspector.DefaultScriptMapping.prototype = { |
this._debuggerReset(); |
this._project.dispose(); |
} |
-} |
+}; |
/** |
* @param {!WebInspector.Target} target |
@@ -155,4 +155,4 @@ WebInspector.DefaultScriptMapping.prototype = { |
WebInspector.DefaultScriptMapping.projectIdForTarget = function(target) |
{ |
return "debugger:" + target.id(); |
-} |
+}; |