effect-io-ai

Package: effect
Module: References

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

See

Signature

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

Source

Since v4.0.0