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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js

Issue 2466123002: DevTools: reformat front-end code to match chromium style. (Closed)
Patch Set: all done Created 4 years, 1 month 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 6a2551c9d845356333ae06d5c90dfbdfc59e2906..5d0bf7cd906982b5f1903f21315308e7b818f020 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/DefaultScriptMapping.js
@@ -27,132 +27,126 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-
/**
- * @constructor
* @implements {WebInspector.DebuggerSourceMapping}
- * @param {!WebInspector.DebuggerModel} debuggerModel
- * @param {!WebInspector.Workspace} workspace
- * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
+ * @unrestricted
*/
-WebInspector.DefaultScriptMapping = function(debuggerModel, workspace, debuggerWorkspaceBinding)
-{
+WebInspector.DefaultScriptMapping = class {
+ /**
+ * @param {!WebInspector.DebuggerModel} debuggerModel
+ * @param {!WebInspector.Workspace} workspace
+ * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
+ */
+ constructor(debuggerModel, workspace, debuggerWorkspaceBinding) {
this._debuggerModel = debuggerModel;
this._debuggerWorkspaceBinding = debuggerWorkspaceBinding;
var projectId = WebInspector.DefaultScriptMapping.projectIdForTarget(debuggerModel.target());
- this._project = new WebInspector.ContentProviderBasedProject(workspace, projectId, WebInspector.projectTypes.Debugger, "");
+ this._project =
+ new WebInspector.ContentProviderBasedProject(workspace, projectId, WebInspector.projectTypes.Debugger, '');
/** @type {!Map.<string, !WebInspector.UISourceCode>} */
this._uiSourceCodeForScriptId = new Map();
/** @type {!Map.<!WebInspector.UISourceCode, string>} */
this._scriptIdForUISourceCode = new Map();
- this._eventListeners = [
- debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this)
- ];
-};
-
-WebInspector.DefaultScriptMapping._scriptSymbol = Symbol("symbol");
+ this._eventListeners = [debuggerModel.addEventListener(
+ WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this)];
+ }
-/**
- * @param {!WebInspector.UISourceCode} uiSourceCode
- * @return {?WebInspector.Script}
- */
-WebInspector.DefaultScriptMapping.scriptForUISourceCode = function(uiSourceCode)
-{
+ /**
+ * @param {!WebInspector.UISourceCode} uiSourceCode
+ * @return {?WebInspector.Script}
+ */
+ static scriptForUISourceCode(uiSourceCode) {
return uiSourceCode[WebInspector.DefaultScriptMapping._scriptSymbol] || null;
-};
+ }
-WebInspector.DefaultScriptMapping.prototype = {
- /**
- * @override
- * @param {!WebInspector.DebuggerModel.Location} rawLocation
- * @return {!WebInspector.UILocation}
- */
- rawLocationToUILocation: function(rawLocation)
- {
- var debuggerModelLocation = /** @type {!WebInspector.DebuggerModel.Location} */ (rawLocation);
- var script = debuggerModelLocation.script();
- var uiSourceCode = this._uiSourceCodeForScriptId.get(script.scriptId);
- var lineNumber = debuggerModelLocation.lineNumber - (script.isInlineScriptWithSourceURL() ? script.lineOffset : 0);
- var columnNumber = debuggerModelLocation.columnNumber || 0;
- if (script.isInlineScriptWithSourceURL() && !lineNumber && columnNumber)
- columnNumber -= script.columnOffset;
- return uiSourceCode.uiLocation(lineNumber, columnNumber);
- },
+ /**
+ * @param {!WebInspector.Target} target
+ * @return {string}
+ */
+ static projectIdForTarget(target) {
+ return 'debugger:' + target.id();
+ }
- /**
- * @override
- * @param {!WebInspector.UISourceCode} uiSourceCode
- * @param {number} lineNumber
- * @param {number} columnNumber
- * @return {?WebInspector.DebuggerModel.Location}
- */
- uiLocationToRawLocation: function(uiSourceCode, lineNumber, columnNumber)
- {
- var scriptId = this._scriptIdForUISourceCode.get(uiSourceCode);
- var script = this._debuggerModel.scriptForId(scriptId);
- if (script.isInlineScriptWithSourceURL())
- return this._debuggerModel.createRawLocation(script, lineNumber + script.lineOffset, lineNumber ? columnNumber : columnNumber + script.columnOffset);
- return this._debuggerModel.createRawLocation(script, lineNumber, columnNumber);
- },
+ /**
+ * @override
+ * @param {!WebInspector.DebuggerModel.Location} rawLocation
+ * @return {!WebInspector.UILocation}
+ */
+ rawLocationToUILocation(rawLocation) {
+ var debuggerModelLocation = /** @type {!WebInspector.DebuggerModel.Location} */ (rawLocation);
+ var script = debuggerModelLocation.script();
+ var uiSourceCode = this._uiSourceCodeForScriptId.get(script.scriptId);
+ var lineNumber = debuggerModelLocation.lineNumber - (script.isInlineScriptWithSourceURL() ? script.lineOffset : 0);
+ var columnNumber = debuggerModelLocation.columnNumber || 0;
+ if (script.isInlineScriptWithSourceURL() && !lineNumber && columnNumber)
+ columnNumber -= script.columnOffset;
+ return uiSourceCode.uiLocation(lineNumber, columnNumber);
+ }
- /**
- * @param {!WebInspector.Script} script
- */
- addScript: function(script)
- {
- var name = WebInspector.ParsedURL.extractName(script.sourceURL);
- var url = "debugger:///VM" + script.scriptId + (name ? " " + name : "");
+ /**
+ * @override
+ * @param {!WebInspector.UISourceCode} uiSourceCode
+ * @param {number} lineNumber
+ * @param {number} columnNumber
+ * @return {?WebInspector.DebuggerModel.Location}
+ */
+ uiLocationToRawLocation(uiSourceCode, lineNumber, columnNumber) {
+ var scriptId = this._scriptIdForUISourceCode.get(uiSourceCode);
+ var script = this._debuggerModel.scriptForId(scriptId);
+ if (script.isInlineScriptWithSourceURL())
+ return this._debuggerModel.createRawLocation(
+ script, lineNumber + script.lineOffset, lineNumber ? columnNumber : columnNumber + script.columnOffset);
+ return this._debuggerModel.createRawLocation(script, lineNumber, columnNumber);
+ }
- var uiSourceCode = this._project.createUISourceCode(url, WebInspector.resourceTypes.Script);
- uiSourceCode[WebInspector.DefaultScriptMapping._scriptSymbol] = script;
- this._uiSourceCodeForScriptId.set(script.scriptId, uiSourceCode);
- this._scriptIdForUISourceCode.set(uiSourceCode, script.scriptId);
- this._project.addUISourceCodeWithProvider(uiSourceCode, script, null);
+ /**
+ * @param {!WebInspector.Script} script
+ */
+ addScript(script) {
+ var name = WebInspector.ParsedURL.extractName(script.sourceURL);
+ var url = 'debugger:///VM' + script.scriptId + (name ? ' ' + name : '');
- this._debuggerWorkspaceBinding.setSourceMapping(this._debuggerModel.target(), uiSourceCode, this);
- this._debuggerWorkspaceBinding.pushSourceMapping(script, this);
- },
+ var uiSourceCode = this._project.createUISourceCode(url, WebInspector.resourceTypes.Script);
+ uiSourceCode[WebInspector.DefaultScriptMapping._scriptSymbol] = script;
+ this._uiSourceCodeForScriptId.set(script.scriptId, uiSourceCode);
+ this._scriptIdForUISourceCode.set(uiSourceCode, script.scriptId);
+ this._project.addUISourceCodeWithProvider(uiSourceCode, script, null);
- /**
- * @override
- * @return {boolean}
- */
- isIdentity: function()
- {
- return true;
- },
+ this._debuggerWorkspaceBinding.setSourceMapping(this._debuggerModel.target(), uiSourceCode, this);
+ this._debuggerWorkspaceBinding.pushSourceMapping(script, this);
+ }
- /**
- * @override
- * @param {!WebInspector.UISourceCode} uiSourceCode
- * @param {number} lineNumber
- * @return {boolean}
- */
- uiLineHasMapping: function(uiSourceCode, lineNumber)
- {
- return true;
- },
+ /**
+ * @override
+ * @return {boolean}
+ */
+ isIdentity() {
+ return true;
+ }
- _debuggerReset: function()
- {
- this._uiSourceCodeForScriptId.clear();
- this._scriptIdForUISourceCode.clear();
- this._project.reset();
- },
+ /**
+ * @override
+ * @param {!WebInspector.UISourceCode} uiSourceCode
+ * @param {number} lineNumber
+ * @return {boolean}
+ */
+ uiLineHasMapping(uiSourceCode, lineNumber) {
+ return true;
+ }
- dispose: function()
- {
- WebInspector.EventTarget.removeEventListeners(this._eventListeners);
- this._debuggerReset();
- this._project.dispose();
- }
-};
+ _debuggerReset() {
+ this._uiSourceCodeForScriptId.clear();
+ this._scriptIdForUISourceCode.clear();
+ this._project.reset();
+ }
-/**
- * @param {!WebInspector.Target} target
- * @return {string}
- */
-WebInspector.DefaultScriptMapping.projectIdForTarget = function(target)
-{
- return "debugger:" + target.id();
+ dispose() {
+ WebInspector.EventTarget.removeEventListeners(this._eventListeners);
+ this._debuggerReset();
+ this._project.dispose();
+ }
};
+
+WebInspector.DefaultScriptMapping._scriptSymbol = Symbol('symbol');
+
+

Powered by Google App Engine
This is Rietveld 408576698