One frame of the bounded call-graph annotation captured on IRCommit.callGraph.

Best-effort projection of the synchronous JS call stack at commit time. site is the symbolic name from the V8 / JSC stack-trace API; source and line are populated when the host's stack-trace API exposes them (V8 typically does in dev; production-minified builds may omit). All three fields are JSON-safe.

interface IRCallFrame {
    line?: number;
    site: string;
    source?: string;
}

Properties

Properties

line?: number

Line number, when available.

site: string

Symbolic name of the call site (function or method name).

source?: string

File path or module specifier, when the stack-trace API exposes it.