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

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

Powered by Google App Engine
This is Rietveld 408576698