Lines Matching refs:callsite
96 function copyCallsite(callsite: CallsiteInfo): CallsiteInfo {
98 id: callsite.id,
99 parentId: callsite.parentId,
100 depth: callsite.depth,
101 name: callsite.name,
102 totalSize: callsite.totalSize,
103 mapping: callsite.mapping,
104 selfSize: callsite.selfSize,
105 merged: callsite.merged,
106 highlighted: callsite.highlighted
111 callsite: CallsiteInfo, map: Map<number, number>): number {
112 return map.has(callsite.parentId) ? +map.get(callsite.parentId)! :
113 callsite.parentId;