Member Junction
    Preparing search index...

    A single phase span. Phases can nest via the stack held in CodeGenReporter.

    type PhaseSpan = {
        children: PhaseSpan[];
        durationMs: number;
        name: string;
        startMs: number;
    }
    Index

    Properties

    children: PhaseSpan[]

    Nested child phases, in order of entry.

    durationMs: number

    Duration of this phase in ms. Set when the phase ends.

    name: string
    startMs: number

    Offset in ms from the start of the run (or start of parent for children).