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

    Type Alias MetaLimits

    Execution limits within MetaConfig. All limits use null to mean "unlimited" (JSON Schema cannot represent Infinity).

    type MetaLimits = {
        callstack: number | null;
        iterations: number | null;
        steps: number | null;
        time: number | null;
    }
    Index

    Properties

    callstack: number | null

    Maximum call stack depth; null = unlimited

    iterations: number | null

    Maximum loop iterations; null = unlimited

    steps: number | null

    Maximum trace steps; null = unlimited

    time: number | null

    Maximum execution time in ms; null = unlimited