| 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 + "?";
|
| },
|
|
|
|
|