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

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

Issue 2573673002: DevTools: enable private field checks as a part of compilation. (Closed)
Patch Set: review comments addressed. Created 4 years 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/HeapSnapshot.js
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshot.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshot.js
index be90fc7e4a2936d61004f2d86250ce23f7e51fcb..b9209dd5125fe5db4208bcb921cee8cf4a8cd15d 100644
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshot.js
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshot.js
@@ -2399,3 +2399,815 @@ HeapSnapshotWorker.HeapSnapshotNodesProvider = class extends HeapSnapshotWorker.
this._buildCompareFunction(comparator), leftBound, rightBound, windowLeft, windowRight);
}
};
+
+/**
+ * @unrestricted
+ */
+HeapSnapshotWorker.JSHeapSnapshot = class extends HeapSnapshotWorker.HeapSnapshot {
+ /**
+ * @param {!Object} profile
+ * @param {!HeapSnapshotWorker.HeapSnapshotProgress} progress
+ */
+ constructor(profile, progress) {
+ super(profile, progress);
+ this._nodeFlags = {
+ // bit flags
+ canBeQueried: 1,
+ detachedDOMTreeNode: 2,
+ pageObject: 4 // The idea is to track separately the objects owned by the page and the objects owned by debugger.
+ };
+ this.initialize();
+ this._lazyStringCache = {};
+ }
+
+ /**
+ * @override
+ * @param {number=} nodeIndex
+ * @return {!HeapSnapshotWorker.JSHeapSnapshotNode}
+ */
+ createNode(nodeIndex) {
+ return new HeapSnapshotWorker.JSHeapSnapshotNode(this, nodeIndex === undefined ? -1 : nodeIndex);
+ }
+
+ /**
+ * @override
+ * @param {number} edgeIndex
+ * @return {!HeapSnapshotWorker.JSHeapSnapshotEdge}
+ */
+ createEdge(edgeIndex) {
+ return new HeapSnapshotWorker.JSHeapSnapshotEdge(this, edgeIndex);
+ }
+
+ /**
+ * @override
+ * @param {number} retainerIndex
+ * @return {!HeapSnapshotWorker.JSHeapSnapshotRetainerEdge}
+ */
+ createRetainingEdge(retainerIndex) {
+ return new HeapSnapshotWorker.JSHeapSnapshotRetainerEdge(this, retainerIndex);
+ }
+
+ /**
+ * @override
+ * @return {?function(!HeapSnapshotWorker.HeapSnapshotNode):boolean}
+ */
+ classNodesFilter() {
+ var mapAndFlag = this.userObjectsMapAndFlag();
+ if (!mapAndFlag)
+ return null;
+ var map = mapAndFlag.map;
+ var flag = mapAndFlag.flag;
+ /**
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ * @return {boolean}
+ */
+ function filter(node) {
+ return !!(map[node.ordinal()] & flag);
+ }
+ return filter;
+ }
+
+ /**
+ * @override
+ * @return {function(!HeapSnapshotWorker.HeapSnapshotEdge):boolean}
+ */
+ containmentEdgesFilter() {
+ return edge => !edge.isInvisible();
+ }
+
+ /**
+ * @override
+ * @return {function(!HeapSnapshotWorker.HeapSnapshotEdge):boolean}
+ */
+ retainingEdgesFilter() {
+ var containmentEdgesFilter = this.containmentEdgesFilter();
+ function filter(edge) {
+ return containmentEdgesFilter(edge) && !edge.node().isRoot() && !edge.isWeak();
+ }
+ return filter;
+ }
+
+ /**
+ * @override
+ */
+ calculateFlags() {
+ this._flags = new Uint32Array(this.nodeCount);
+ this._markDetachedDOMTreeNodes();
+ this._markQueriableHeapObjects();
+ this._markPageOwnedNodes();
+ }
+
+ /**
+ * @override
+ */
+ calculateDistances() {
+ /**
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ * @param {!HeapSnapshotWorker.HeapSnapshotEdge} edge
+ * @return {boolean}
+ */
+ function filter(node, edge) {
+ if (node.isHidden())
+ return edge.name() !== 'sloppy_function_map' || node.rawName() !== 'system / NativeContext';
+ if (node.isArray()) {
+ // DescriptorArrays are fixed arrays used to hold instance descriptors.
+ // The format of the these objects is:
+ // [0]: Number of descriptors
+ // [1]: Either Smi(0) if uninitialized, or a pointer to small fixed array:
+ // [0]: pointer to fixed array with enum cache
+ // [1]: either Smi(0) or pointer to fixed array with indices
+ // [i*3+2]: i-th key
+ // [i*3+3]: i-th type
+ // [i*3+4]: i-th descriptor
+ // As long as maps may share descriptor arrays some of the descriptor
+ // links may not be valid for all the maps. We just skip
+ // all the descriptor links when calculating distances.
+ // For more details see http://crbug.com/413608
+ if (node.rawName() !== '(map descriptors)')
+ return true;
+ var index = edge.name();
+ return index < 2 || (index % 3) !== 1;
+ }
+ return true;
+ }
+ super.calculateDistances(filter);
+ }
+
+ /**
+ * @override
+ * @protected
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ * @return {boolean}
+ */
+ isUserRoot(node) {
+ return node.isUserRoot() || node.isDocumentDOMTreesRoot();
+ }
+
+ /**
+ * @override
+ * @param {function(!HeapSnapshotWorker.HeapSnapshotNode)} action
+ * @param {boolean=} userRootsOnly
+ */
+ forEachRoot(action, userRootsOnly) {
+ /**
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ * @param {string} name
+ * @return {?HeapSnapshotWorker.HeapSnapshotNode}
+ */
+ function getChildNodeByName(node, name) {
+ for (var iter = node.edges(); iter.hasNext(); iter.next()) {
+ var child = iter.edge.node();
+ if (child.name() === name)
+ return child;
+ }
+ return null;
+ }
+
+ var visitedNodes = {};
+ /**
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ */
+ function doAction(node) {
+ var ordinal = node.ordinal();
+ if (!visitedNodes[ordinal]) {
+ action(node);
+ visitedNodes[ordinal] = true;
+ }
+ }
+
+ var gcRoots = getChildNodeByName(this.rootNode(), '(GC roots)');
+ if (!gcRoots)
+ return;
+
+ if (userRootsOnly) {
+ for (var iter = this.rootNode().edges(); iter.hasNext(); iter.next()) {
+ var node = iter.edge.node();
+ if (this.isUserRoot(node))
+ doAction(node);
+ }
+ } else {
+ for (var iter = gcRoots.edges(); iter.hasNext(); iter.next()) {
+ var subRoot = iter.edge.node();
+ for (var iter2 = subRoot.edges(); iter2.hasNext(); iter2.next())
+ doAction(iter2.edge.node());
+ doAction(subRoot);
+ }
+ for (var iter = this.rootNode().edges(); iter.hasNext(); iter.next())
+ doAction(iter.edge.node());
+ }
+ }
+
+ /**
+ * @override
+ * @return {?{map: !Uint32Array, flag: number}}
+ */
+ userObjectsMapAndFlag() {
+ return {map: this._flags, flag: this._nodeFlags.pageObject};
+ }
+
+ /**
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ * @return {number}
+ */
+ _flagsOfNode(node) {
+ return this._flags[node.nodeIndex / this._nodeFieldCount];
+ }
+
+ _markDetachedDOMTreeNodes() {
+ var flag = this._nodeFlags.detachedDOMTreeNode;
+ var detachedDOMTreesRoot;
+ for (var iter = this.rootNode().edges(); iter.hasNext(); iter.next()) {
+ var node = iter.edge.node();
+ if (node.name() === '(Detached DOM trees)') {
+ detachedDOMTreesRoot = node;
+ break;
+ }
+ }
+
+ if (!detachedDOMTreesRoot)
+ return;
+
+ var detachedDOMTreeRE = /^Detached DOM tree/;
+ for (var iter = detachedDOMTreesRoot.edges(); iter.hasNext(); iter.next()) {
+ var node = iter.edge.node();
+ if (detachedDOMTreeRE.test(node.className())) {
+ for (var edgesIter = node.edges(); edgesIter.hasNext(); edgesIter.next())
+ this._flags[edgesIter.edge.node().nodeIndex / this._nodeFieldCount] |= flag;
+ }
+ }
+ }
+
+ _markQueriableHeapObjects() {
+ // Allow runtime properties query for objects accessible from Window objects
+ // via regular properties, and for DOM wrappers. Trying to access random objects
+ // can cause a crash due to insonsistent state of internal properties of wrappers.
+ var flag = this._nodeFlags.canBeQueried;
+ var hiddenEdgeType = this._edgeHiddenType;
+ var internalEdgeType = this._edgeInternalType;
+ var invisibleEdgeType = this._edgeInvisibleType;
+ var weakEdgeType = this._edgeWeakType;
+ var edgeToNodeOffset = this._edgeToNodeOffset;
+ var edgeTypeOffset = this._edgeTypeOffset;
+ var edgeFieldsCount = this._edgeFieldsCount;
+ var containmentEdges = this.containmentEdges;
+ var nodeFieldCount = this._nodeFieldCount;
+ var firstEdgeIndexes = this._firstEdgeIndexes;
+
+ var flags = this._flags;
+ var list = [];
+
+ for (var iter = this.rootNode().edges(); iter.hasNext(); iter.next()) {
+ if (iter.edge.node().isUserRoot())
+ list.push(iter.edge.node().nodeIndex / nodeFieldCount);
+ }
+
+ while (list.length) {
+ var nodeOrdinal = list.pop();
+ if (flags[nodeOrdinal] & flag)
+ continue;
+ flags[nodeOrdinal] |= flag;
+ var beginEdgeIndex = firstEdgeIndexes[nodeOrdinal];
+ var endEdgeIndex = firstEdgeIndexes[nodeOrdinal + 1];
+ for (var edgeIndex = beginEdgeIndex; edgeIndex < endEdgeIndex; edgeIndex += edgeFieldsCount) {
+ var childNodeIndex = containmentEdges[edgeIndex + edgeToNodeOffset];
+ var childNodeOrdinal = childNodeIndex / nodeFieldCount;
+ if (flags[childNodeOrdinal] & flag)
+ continue;
+ var type = containmentEdges[edgeIndex + edgeTypeOffset];
+ if (type === hiddenEdgeType || type === invisibleEdgeType || type === internalEdgeType || type === weakEdgeType)
+ continue;
+ list.push(childNodeOrdinal);
+ }
+ }
+ }
+
+ _markPageOwnedNodes() {
+ var edgeShortcutType = this._edgeShortcutType;
+ var edgeElementType = this._edgeElementType;
+ var edgeToNodeOffset = this._edgeToNodeOffset;
+ var edgeTypeOffset = this._edgeTypeOffset;
+ var edgeFieldsCount = this._edgeFieldsCount;
+ var edgeWeakType = this._edgeWeakType;
+ var firstEdgeIndexes = this._firstEdgeIndexes;
+ var containmentEdges = this.containmentEdges;
+ var nodeFieldCount = this._nodeFieldCount;
+ var nodesCount = this.nodeCount;
+
+ var flags = this._flags;
+ var pageObjectFlag = this._nodeFlags.pageObject;
+
+ var nodesToVisit = new Uint32Array(nodesCount);
+ var nodesToVisitLength = 0;
+
+ var rootNodeOrdinal = this._rootNodeIndex / nodeFieldCount;
+ var node = this.rootNode();
+
+ // Populate the entry points. They are Window objects and DOM Tree Roots.
+ for (var edgeIndex = firstEdgeIndexes[rootNodeOrdinal], endEdgeIndex = firstEdgeIndexes[rootNodeOrdinal + 1];
+ edgeIndex < endEdgeIndex; edgeIndex += edgeFieldsCount) {
+ var edgeType = containmentEdges[edgeIndex + edgeTypeOffset];
+ var nodeIndex = containmentEdges[edgeIndex + edgeToNodeOffset];
+ if (edgeType === edgeElementType) {
+ node.nodeIndex = nodeIndex;
+ if (!node.isDocumentDOMTreesRoot())
+ continue;
+ } else if (edgeType !== edgeShortcutType) {
+ continue;
+ }
+ var nodeOrdinal = nodeIndex / nodeFieldCount;
+ nodesToVisit[nodesToVisitLength++] = nodeOrdinal;
+ flags[nodeOrdinal] |= pageObjectFlag;
+ }
+
+ // Mark everything reachable with the pageObject flag.
+ while (nodesToVisitLength) {
+ var nodeOrdinal = nodesToVisit[--nodesToVisitLength];
+ var beginEdgeIndex = firstEdgeIndexes[nodeOrdinal];
+ var endEdgeIndex = firstEdgeIndexes[nodeOrdinal + 1];
+ for (var edgeIndex = beginEdgeIndex; edgeIndex < endEdgeIndex; edgeIndex += edgeFieldsCount) {
+ var childNodeIndex = containmentEdges[edgeIndex + edgeToNodeOffset];
+ var childNodeOrdinal = childNodeIndex / nodeFieldCount;
+ if (flags[childNodeOrdinal] & pageObjectFlag)
+ continue;
+ var type = containmentEdges[edgeIndex + edgeTypeOffset];
+ if (type === edgeWeakType)
+ continue;
+ nodesToVisit[nodesToVisitLength++] = childNodeOrdinal;
+ flags[childNodeOrdinal] |= pageObjectFlag;
+ }
+ }
+ }
+
+ /**
+ * @override
+ */
+ calculateStatistics() {
+ var nodeFieldCount = this._nodeFieldCount;
+ var nodes = this.nodes;
+ var nodesLength = nodes.length;
+ var nodeTypeOffset = this._nodeTypeOffset;
+ var nodeSizeOffset = this._nodeSelfSizeOffset;
+ var nodeNativeType = this._nodeNativeType;
+ var nodeCodeType = this._nodeCodeType;
+ var nodeConsStringType = this._nodeConsStringType;
+ var nodeSlicedStringType = this._nodeSlicedStringType;
+ var distances = this._nodeDistances;
+ var sizeNative = 0;
+ var sizeCode = 0;
+ var sizeStrings = 0;
+ var sizeJSArrays = 0;
+ var sizeSystem = 0;
+ var node = this.rootNode();
+ for (var nodeIndex = 0; nodeIndex < nodesLength; nodeIndex += nodeFieldCount) {
+ var nodeSize = nodes[nodeIndex + nodeSizeOffset];
+ var ordinal = nodeIndex / nodeFieldCount;
+ if (distances[ordinal] >= Profiler.HeapSnapshotCommon.baseSystemDistance) {
+ sizeSystem += nodeSize;
+ continue;
+ }
+ var nodeType = nodes[nodeIndex + nodeTypeOffset];
+ node.nodeIndex = nodeIndex;
+ if (nodeType === nodeNativeType)
+ sizeNative += nodeSize;
+ else if (nodeType === nodeCodeType)
+ sizeCode += nodeSize;
+ else if (nodeType === nodeConsStringType || nodeType === nodeSlicedStringType || node.type() === 'string')
+ sizeStrings += nodeSize;
+ else if (node.name() === 'Array')
+ sizeJSArrays += this._calculateArraySize(node);
+ }
+ this._statistics = new Profiler.HeapSnapshotCommon.Statistics();
+ this._statistics.total = this.totalSize;
+ this._statistics.v8heap = this.totalSize - sizeNative;
+ this._statistics.native = sizeNative;
+ this._statistics.code = sizeCode;
+ this._statistics.jsArrays = sizeJSArrays;
+ this._statistics.strings = sizeStrings;
+ this._statistics.system = sizeSystem;
+ }
+
+ /**
+ * @param {!HeapSnapshotWorker.HeapSnapshotNode} node
+ * @return {number}
+ */
+ _calculateArraySize(node) {
+ var size = node.selfSize();
+ var beginEdgeIndex = node.edgeIndexesStart();
+ var endEdgeIndex = node.edgeIndexesEnd();
+ var containmentEdges = this.containmentEdges;
+ var strings = this.strings;
+ var edgeToNodeOffset = this._edgeToNodeOffset;
+ var edgeTypeOffset = this._edgeTypeOffset;
+ var edgeNameOffset = this._edgeNameOffset;
+ var edgeFieldsCount = this._edgeFieldsCount;
+ var edgeInternalType = this._edgeInternalType;
+ for (var edgeIndex = beginEdgeIndex; edgeIndex < endEdgeIndex; edgeIndex += edgeFieldsCount) {
+ var edgeType = containmentEdges[edgeIndex + edgeTypeOffset];
+ if (edgeType !== edgeInternalType)
+ continue;
+ var edgeName = strings[containmentEdges[edgeIndex + edgeNameOffset]];
+ if (edgeName !== 'elements')
+ continue;
+ var elementsNodeIndex = containmentEdges[edgeIndex + edgeToNodeOffset];
+ node.nodeIndex = elementsNodeIndex;
+ if (node.retainersCount() === 1)
+ size += node.selfSize();
+ break;
+ }
+ return size;
+ }
+
+ /**
+ * @return {!Profiler.HeapSnapshotCommon.Statistics}
+ */
+ getStatistics() {
+ return this._statistics;
+ }
+};
+
+/**
+ * @unrestricted
+ */
+HeapSnapshotWorker.JSHeapSnapshotNode = class extends HeapSnapshotWorker.HeapSnapshotNode {
+ /**
+ * @param {!HeapSnapshotWorker.JSHeapSnapshot} snapshot
+ * @param {number=} nodeIndex
+ */
+ constructor(snapshot, nodeIndex) {
+ super(snapshot, nodeIndex);
+ }
+
+ /**
+ * @return {boolean}
+ */
+ canBeQueried() {
+ var flags = this._snapshot._flagsOfNode(this);
+ return !!(flags & this._snapshot._nodeFlags.canBeQueried);
+ }
+
+ /**
+ * @return {string}
+ */
+ rawName() {
+ return super.name();
+ }
+
+ /**
+ * @override
+ * @return {string}
+ */
+ name() {
+ var snapshot = this._snapshot;
+ if (this.rawType() === snapshot._nodeConsStringType) {
+ var string = snapshot._lazyStringCache[this.nodeIndex];
+ if (typeof string === 'undefined') {
+ string = this._consStringName();
+ snapshot._lazyStringCache[this.nodeIndex] = string;
+ }
+ return string;
+ }
+ return this.rawName();
+ }
+
+ /**
+ * @return {string}
+ */
+ _consStringName() {
+ var snapshot = this._snapshot;
+ var consStringType = snapshot._nodeConsStringType;
+ var edgeInternalType = snapshot._edgeInternalType;
+ var edgeFieldsCount = snapshot._edgeFieldsCount;
+ var edgeToNodeOffset = snapshot._edgeToNodeOffset;
+ var edgeTypeOffset = snapshot._edgeTypeOffset;
+ var edgeNameOffset = snapshot._edgeNameOffset;
+ var strings = snapshot.strings;
+ var edges = snapshot.containmentEdges;
+ var firstEdgeIndexes = snapshot._firstEdgeIndexes;
+ var nodeFieldCount = snapshot._nodeFieldCount;
+ var nodeTypeOffset = snapshot._nodeTypeOffset;
+ var nodeNameOffset = snapshot._nodeNameOffset;
+ var nodes = snapshot.nodes;
+ var nodesStack = [];
+ nodesStack.push(this.nodeIndex);
+ var name = '';
+
+ while (nodesStack.length && name.length < 1024) {
+ var nodeIndex = nodesStack.pop();
+ if (nodes[nodeIndex + nodeTypeOffset] !== consStringType) {
+ name += strings[nodes[nodeIndex + nodeNameOffset]];
+ continue;
+ }
+ var nodeOrdinal = nodeIndex / nodeFieldCount;
+ var beginEdgeIndex = firstEdgeIndexes[nodeOrdinal];
+ var endEdgeIndex = firstEdgeIndexes[nodeOrdinal + 1];
+ var firstNodeIndex = 0;
+ var secondNodeIndex = 0;
+ for (var edgeIndex = beginEdgeIndex; edgeIndex < endEdgeIndex && (!firstNodeIndex || !secondNodeIndex);
+ edgeIndex += edgeFieldsCount) {
+ var edgeType = edges[edgeIndex + edgeTypeOffset];
+ if (edgeType === edgeInternalType) {
+ var edgeName = strings[edges[edgeIndex + edgeNameOffset]];
+ if (edgeName === 'first')
+ firstNodeIndex = edges[edgeIndex + edgeToNodeOffset];
+ else if (edgeName === 'second')
+ secondNodeIndex = edges[edgeIndex + edgeToNodeOffset];
+ }
+ }
+ nodesStack.push(secondNodeIndex);
+ nodesStack.push(firstNodeIndex);
+ }
+ return name;
+ }
+
+ /**
+ * @override
+ * @return {string}
+ */
+ className() {
+ var type = this.type();
+ switch (type) {
+ case 'hidden':
+ return '(system)';
+ case 'object':
+ case 'native':
+ return this.name();
+ case 'code':
+ return '(compiled code)';
+ default:
+ return '(' + type + ')';
+ }
+ }
+
+ /**
+ * @override
+ * @return {number}
+ */
+ classIndex() {
+ var snapshot = this._snapshot;
+ var nodes = snapshot.nodes;
+ var type = nodes[this.nodeIndex + snapshot._nodeTypeOffset];
+ if (type === snapshot._nodeObjectType || type === snapshot._nodeNativeType)
+ return nodes[this.nodeIndex + snapshot._nodeNameOffset];
+ return -1 - type;
+ }
+
+ /**
+ * @override
+ * @return {number}
+ */
+ id() {
+ var snapshot = this._snapshot;
+ return snapshot.nodes[this.nodeIndex + snapshot._nodeIdOffset];
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isHidden() {
+ return this.rawType() === this._snapshot._nodeHiddenType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isArray() {
+ return this.rawType() === this._snapshot._nodeArrayType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isSynthetic() {
+ return this.rawType() === this._snapshot._nodeSyntheticType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isUserRoot() {
+ return !this.isSynthetic();
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isDocumentDOMTreesRoot() {
+ return this.isSynthetic() && this.name() === '(Document DOM trees)';
+ }
+
+ /**
+ * @override
+ * @return {!Profiler.HeapSnapshotCommon.Node}
+ */
+ serialize() {
+ var result = super.serialize();
+ var flags = this._snapshot._flagsOfNode(this);
+ if (flags & this._snapshot._nodeFlags.canBeQueried)
+ result.canBeQueried = true;
+ if (flags & this._snapshot._nodeFlags.detachedDOMTreeNode)
+ result.detachedDOMTreeNode = true;
+ return result;
+ }
+};
+
+/**
+ * @unrestricted
+ */
+HeapSnapshotWorker.JSHeapSnapshotEdge = class extends HeapSnapshotWorker.HeapSnapshotEdge {
+ /**
+ * @param {!HeapSnapshotWorker.JSHeapSnapshot} snapshot
+ * @param {number=} edgeIndex
+ */
+ constructor(snapshot, edgeIndex) {
+ super(snapshot, edgeIndex);
+ }
+
+ /**
+ * @override
+ * @return {!HeapSnapshotWorker.JSHeapSnapshotEdge}
+ */
+ clone() {
+ var snapshot = /** @type {!HeapSnapshotWorker.JSHeapSnapshot} */ (this._snapshot);
+ return new HeapSnapshotWorker.JSHeapSnapshotEdge(snapshot, this.edgeIndex);
+ }
+
+ /**
+ * @override
+ * @return {boolean}
+ */
+ hasStringName() {
+ if (!this.isShortcut())
+ return this._hasStringName();
+ return isNaN(parseInt(this._name(), 10));
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isElement() {
+ return this.rawType() === this._snapshot._edgeElementType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isHidden() {
+ return this.rawType() === this._snapshot._edgeHiddenType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isWeak() {
+ return this.rawType() === this._snapshot._edgeWeakType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isInternal() {
+ return this.rawType() === this._snapshot._edgeInternalType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isInvisible() {
+ return this.rawType() === this._snapshot._edgeInvisibleType;
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isShortcut() {
+ return this.rawType() === this._snapshot._edgeShortcutType;
+ }
+
+ /**
+ * @override
+ * @return {string}
+ */
+ name() {
+ var name = this._name();
+ if (!this.isShortcut())
+ return String(name);
+ var numName = parseInt(name, 10);
+ return String(isNaN(numName) ? name : numName);
+ }
+
+ /**
+ * @override
+ * @return {string}
+ */
+ toString() {
+ var name = this.name();
+ switch (this.type()) {
+ case 'context':
+ return '->' + name;
+ case 'element':
+ return '[' + name + ']';
+ case 'weak':
+ return '[[' + name + ']]';
+ case 'property':
+ return name.indexOf(' ') === -1 ? '.' + name : '["' + name + '"]';
+ case 'shortcut':
+ if (typeof name === 'string')
+ return name.indexOf(' ') === -1 ? '.' + name : '["' + name + '"]';
+ else
+ return '[' + name + ']';
+ case 'internal':
+ case 'hidden':
+ case 'invisible':
+ return '{' + name + '}';
+ }
+ return '?' + name + '?';
+ }
+
+ /**
+ * @return {boolean}
+ */
+ _hasStringName() {
+ var type = this.rawType();
+ var snapshot = this._snapshot;
+ return type !== snapshot._edgeElementType && type !== snapshot._edgeHiddenType;
+ }
+
+ /**
+ * @return {string|number}
+ */
+ _name() {
+ return this._hasStringName() ? this._snapshot.strings[this._nameOrIndex()] : this._nameOrIndex();
+ }
+
+ /**
+ * @return {number}
+ */
+ _nameOrIndex() {
+ return this._edges[this.edgeIndex + this._snapshot._edgeNameOffset];
+ }
+
+ /**
+ * @override
+ * @return {number}
+ */
+ rawType() {
+ return this._edges[this.edgeIndex + this._snapshot._edgeTypeOffset];
+ }
+};
+
+/**
+ * @unrestricted
+ */
+HeapSnapshotWorker.JSHeapSnapshotRetainerEdge = class extends HeapSnapshotWorker.HeapSnapshotRetainerEdge {
+ /**
+ * @param {!HeapSnapshotWorker.JSHeapSnapshot} snapshot
+ * @param {number} retainerIndex
+ */
+ constructor(snapshot, retainerIndex) {
+ super(snapshot, retainerIndex);
+ }
+
+ /**
+ * @override
+ * @return {!HeapSnapshotWorker.JSHeapSnapshotRetainerEdge}
+ */
+ clone() {
+ var snapshot = /** @type {!HeapSnapshotWorker.JSHeapSnapshot} */ (this._snapshot);
+ return new HeapSnapshotWorker.JSHeapSnapshotRetainerEdge(snapshot, this.retainerIndex());
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isHidden() {
+ return this._edge().isHidden();
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isInternal() {
+ return this._edge().isInternal();
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isInvisible() {
+ return this._edge().isInvisible();
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isShortcut() {
+ return this._edge().isShortcut();
+ }
+
+ /**
+ * @return {boolean}
+ */
+ isWeak() {
+ return this._edge().isWeak();
+ }
+};

Powered by Google App Engine
This is Rietveld 408576698