@study-lenses/tracing
    Preparing search index...

    Type Alias StepCore

    Core fields present in every step, regardless of language or tracer. Enables visual correlation between steps and code/editor locations.

    Tracer-specific steps extend this with additional fields (e.g. char for txt:chars, binding for js:klve). The API layer returns readonly StepCore[]; consumers who need tracer-specific fields import from the tracer package's types.

    type StepCore = {
        loc: SourceLocation;
        step: number;
    }
    Index

    Properties

    Properties

    ESTree-compliant source location (line 1-indexed, column 0-indexed)

    step: number

    1-indexed execution order