mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.5 KiB
1.5 KiB
Home > puppeteer > Protocol > Profiler > ProfileNode
Protocol.Profiler.ProfileNode interface
Profile node. Holds callsite information, execution statistics and child nodes.
Signature:
export interface ProfileNode
Properties
| Property | Type | Description |
|---|---|---|
| callFrame | Runtime.CallFrame | Function location. |
| children | integer[] | Child node ids. |
| deoptReason | string | The reason of being not optimized. The function may be deoptimized or marked as don't optimize. |
| hitCount | integer | Number of samples where this node was on top of the call stack. |
| id | integer | Unique id of the node. |
| positionTicks | PositionTickInfo[] | An array of source position ticks. |