MCPcopy Create free account
hub / github.com/aidenybai/bippy / StackFrame

Interface StackFrame

packages/bippy/src/source/parse-stack.ts:1–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface StackFrame {
2 columnNumber?: number;
3 lineNumber?: number;
4 // start of the enclosing function (the definition, not the call site);
5 // only available from V8's structured CallSite API
6 enclosingLineNumber?: number;
7 enclosingColumnNumber?: number;
8 fileName?: string;
9 functionName?: string;
10 source?: string;
11 isServer?: boolean;
12 isSymbolicated?: boolean;
13 // the source map ignore-listed this frame's original source (x_google_ignoreList)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…