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

Unified Diff: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js

Issue 2153703003: [Devtools] Code cleanup - ensure no double-semicolons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/heap_snapshot_worker/JSHeapSnapshot.js
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
index c266f1ae34564c4c00b990ccc72f36a76df769c5..00257f7a4b00d6ca82d4fc990193836ad2e0de44 100644
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
@@ -401,7 +401,7 @@ WebInspector.JSHeapSnapshot.prototype = {
var nodes = this.nodes;
var nodesLength = nodes.length;
var nodeTypeOffset = this._nodeTypeOffset;
- var nodeSizeOffset = this._nodeSelfSizeOffset;;
+ var nodeSizeOffset = this._nodeSelfSizeOffset;
var nodeNativeType = this._nodeNativeType;
var nodeCodeType = this._nodeCodeType;
var nodeConsStringType = this._nodeConsStringType;
@@ -606,7 +606,7 @@ WebInspector.JSHeapSnapshotNode.prototype = {
{
var snapshot = this._snapshot;
var nodes = snapshot.nodes;
- var type = nodes[this.nodeIndex + snapshot._nodeTypeOffset];;
+ var type = nodes[this.nodeIndex + snapshot._nodeTypeOffset];
if (type === snapshot._nodeObjectType || type === snapshot._nodeNativeType)
return nodes[this.nodeIndex + snapshot._nodeNameOffset];
return -1 - type;
@@ -796,7 +796,7 @@ WebInspector.JSHeapSnapshotEdge.prototype = {
case "hidden":
case "invisible":
return "{" + name + "}";
- };
+ }
return "?" + name + "?";
},

Powered by Google App Engine
This is Rietveld 408576698