StackFrameA captured stack-frame node used to describe the traced execution path.
When to use
Use when reading or supplying the stack-frame chain that Effect tracing uses to attach diagnostic call-site information to failures and interruptions.
Details
Each frame has a span or operation name, a lazy stack supplier, and an
optional parent frame that links it to the previous captured frame.
referencesCurrentStackFrame
Source effect/References.ts:7035 lines
export interface StackFrame {
readonly StackFrame.name: stringname: string
readonly StackFrame.stack: () => string | undefinedstack: () => string | undefined
readonly StackFrame.parent: StackFrame | undefinedparent: StackFrame | undefined
}Referenced by 4 symbols