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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatterEditorAction.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/sources/ScriptFormatterEditorAction.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatterEditorAction.js b/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatterEditorAction.js
index 12f3aba6d5cac222aa86850a61129f24fac5a81d..fb0ae7a5443119a16176e50c9c5be4f5ef1419e3 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatterEditorAction.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatterEditorAction.js
@@ -12,7 +12,7 @@ WebInspector.FormatterScriptMapping = function(debuggerModel, editorAction)
{
this._debuggerModel = debuggerModel;
this._editorAction = editorAction;
-}
+};
WebInspector.FormatterScriptMapping.prototype = {
/**
@@ -79,7 +79,7 @@ WebInspector.FormatterScriptMapping.prototype = {
{
return true;
}
-}
+};
/**
* @constructor
@@ -94,7 +94,7 @@ WebInspector.FormatterScriptMapping.FormatData = function(projectId, path, mappi
this.path = path;
this.mapping = mapping;
this.scripts = scripts;
-}
+};
/**
* @constructor
@@ -120,7 +120,7 @@ WebInspector.ScriptFormatterEditorAction = function()
this._scriptMappingByTarget = new Map();
this._workspace = WebInspector.workspace;
WebInspector.targetManager.observeTargets(this);
-}
+};
WebInspector.ScriptFormatterEditorAction.prototype = {
/**
@@ -391,4 +391,4 @@ WebInspector.ScriptFormatterEditorAction.prototype = {
this._showIfNeeded(uiSourceCode, formattedUISourceCode, formatterMapping);
}
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698