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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.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/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();
-}
+};

Powered by Google App Engine
This is Rietveld 408576698