Skip to main content

ProfileNode

interface Profiler.ProfileNode

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

Properties Jump to heading

Unique id of the node.

optional
Jump to headinghitCount: number | undefined

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

optional
Jump to headingchildren: number[] | undefined

Child node ids.

optional
Jump to headingdeoptReason: string | undefined

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

An array of source position ticks.

Back to top