Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Profiler.ProfileNode

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

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

Properties

id: integer

Unique id of the node.

callFrame: Runtime.CallFrame

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.