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

    Interface SemanticCfgGuidedVisitorConfiguration<OtherInfo, ControlFlow, Ast, Dfg>

    interface SemanticCfgGuidedVisitorConfiguration<
        OtherInfo = NoInfo,
        ControlFlow extends ControlFlowInformation = ControlFlowInformation,
        Ast extends NormalizedAst<OtherInfo> = NormalizedAst<OtherInfo>,
        Dfg extends DataflowGraph = DataflowGraph,
    > {
        controlFlow: ControlFlow;
        ctx: ReadOnlyFlowrAnalyzerContext;
        defaultVisitingOrder: "forward" | "backward";
        dfg: Dfg;
        normalizedAst: Pick<Ast, "idMap">;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index
    controlFlow: ControlFlow
    defaultVisitingOrder: "forward" | "backward"
    dfg: Dfg
    normalizedAst: Pick<Ast, "idMap">

    the ast the vertices refer to; only the id map is used, so cfgVisitorConfig can take it from the dataflow graph