Hyperlinkv0.8.0-beta.28

References

References.StackFrameinterfaceeffect/References.ts:703
StackFrame

A 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.

export interface StackFrame {
  readonly name: string
  readonly stack: () => string | undefined
  readonly parent: StackFrame | undefined
}
Referenced by 4 symbols