Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/sinco/deps.ts>Protocol.Profiler.ProfileNode

Browser Automation and Testing Tool for Deno, written in full TypeScript
Latest
interface Protocol.Profiler.ProfileNode
import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { ProfileNode } = Protocol.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.