@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Interface FlowrGasThresholds

    Thresholds for GasLevel transitions used by ReadOnlyFlowrAnalyzerGasContext.checkGas, each dimension boundable per feature (see GasThresholdSpec).

    interface FlowrGasThresholds {
        memory: GasThresholdSpec;
        steps?: GasThresholdSpec;
        timeMs: GasThresholdSpec;
        vertices?: GasThresholdSpec;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Heap-usage fraction thresholds (0-1, before factor scaling).

    Processed-AST-node thresholds, counted rather than sampled. Only read by keys that arm a budget (i.e. GasFeatureKey.Dataflow); absent means unbounded.

    Elapsed analysis time thresholds in milliseconds (before factor scaling).

    vertices?: GasThresholdSpec

    Created-dataflow-vertex thresholds, counted like FlowrGasThresholds.steps.