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

    Interface SlicerStatsDataflow<T>

    interface SlicerStatsDataflow<T = number> {
        numberOfCalls: T;
        numberOfControlFlowEdges: T;
        numberOfEdges: T;
        numberOfFunctionDefinitions: T;
        numberOfNodes: T;
        sizeOfObject: T;
    }

    Type Parameters

    • T = number
    Index
    numberOfCalls: T
    numberOfControlFlowEdges: T

    The edges that carry the control flow the ControlFlowGraph is a view on. They live in the very same graph, so they are counted separately to keep the dataflow numbers comparable. An edge that carries both a dataflow and a control flow type is counted on both sides. Missing in data recorded before the control flow moved into the dataflow graph.

    numberOfEdges: T
    numberOfFunctionDefinitions: T
    numberOfNodes: T
    sizeOfObject: T