Extremely Popular
Go to Latest
interface puppeteer.Profiler.ProfileNode
import { type puppeteer } from "https://dotland.deno.dev/x/fresh@1.0.2/tests/deps.ts";
const { ProfileNode } = puppeteer.Profiler;

Profile node. Holds callsite information, execution statistics and child nodes.

Properties

Unique id of the node.

Function location.

optional
hitCount: integer

Number of samples where this node was on top of the call stack.

optional
children: integer[]

Child node ids.

optional
deoptReason: string

The reason of being not optimized. The function may be deoptimized or marked as don't optimize.

optional
positionTicks: PositionTickInfo[]

An array of source position ticks.