Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.HeapProfiler.SamplingHeapProfileNode

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.HeapProfiler.SamplingHeapProfileNode
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { SamplingHeapProfileNode } = Protocol.HeapProfiler;

Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.

Properties

callFrame: Runtime.CallFrame

Function location.

selfSize: number

Allocations size in bytes for the node excluding children.

id: integer

Node id. Ids are unique across all profiles collected between startSampling and stopSampling.

children: SamplingHeapProfileNode[]

Child nodes.