Index: third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js |
index 23034700bbde7151cf239405b285bb6110c2a6ca..0e849cd825aabaf3a3f007532bf37dc4faa0f910 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js |
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js |
@@ -62,7 +62,7 @@ WebInspector.CompilerScriptMapping = function(debuggerModel, workspace, networkM |
workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this), |
debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this) |
]; |
-} |
+}; |
WebInspector.CompilerScriptMapping._originSymbol = Symbol("origin"); |
@@ -73,7 +73,7 @@ WebInspector.CompilerScriptMapping._originSymbol = Symbol("origin"); |
WebInspector.CompilerScriptMapping.uiSourceCodeOrigin = function(uiSourceCode) |
{ |
return uiSourceCode[WebInspector.CompilerScriptMapping._originSymbol] || null; |
-} |
+}; |
WebInspector.CompilerScriptMapping.prototype = { |
/** |
@@ -373,7 +373,7 @@ WebInspector.CompilerScriptMapping.prototype = { |
this._sourceMapForURL.valuesArray().forEach(unbindSourceMapSources.bind(this)); |
this._sourceMapLoadingPromises.clear(); |
- this._sourceMapForScriptId.clear() |
+ this._sourceMapForScriptId.clear(); |
this._scriptForSourceMap.clear(); |
this._sourceMapForURL.clear(); |
}, |
@@ -384,7 +384,7 @@ WebInspector.CompilerScriptMapping.prototype = { |
this._debuggerReset(); |
this._stubProject.dispose(); |
} |
-} |
+}; |
/** |
* @param {!WebInspector.Target} target |
@@ -393,4 +393,4 @@ WebInspector.CompilerScriptMapping.prototype = { |
WebInspector.CompilerScriptMapping.projectIdForTarget = function(target) |
{ |
return "compiler-script-project:" + target.id(); |
-} |
+}; |