@eagleoutice/flowr - v2.10.1
    Preparing search index...
    CallGraph: {
        compute(this: void, graph: DataflowGraph): CallGraph;
        computeSubCallGraph(
            this: void,
            graph: CallGraph,
            entryPoints: Set<NodeId>,
        ): CallGraph;
        diffGraphs<G extends DataflowGraph<DataflowGraphVertexInfo, DfEdge>>(
            this: void,
            left: NamedGraph<G>,
            right: NamedGraph<G>,
            config?: Partial<GenericDiffConfiguration>,
        ): GraphDifferenceReport;
        dropTransitiveEdges(this: void, graph: CallGraph): CallGraph;
        invertGraph<G extends DataflowGraph<DataflowGraphVertexInfo, DfEdge>>(
            this: void,
            graph: G,
            cleanEnv: REnvironmentInformation,
        ): G;
        name: "CallGraph";
        reaches<G extends DataflowGraph<DataflowGraphVertexInfo, DfEdge>>(
            this: void,
            from: NodeId,
            to: NodeId,
            graph: G,
            knownReachability?: DefaultMap<NodeId, Set<NodeId>>,
        ): boolean;
        resolveGraphCriteria<
            G extends DataflowGraph<DataflowGraphVertexInfo, DfEdge>,
        >(
            graph: G,
            ctx: ReadOnlyFlowrAnalyzerContext,
            idMap?: AstIdMap,
        ): G;
        visualize: {
            mermaid: {
                convert(
                    this: void,
                    config: MermaidGraphConfiguration,
                ): { mermaid: MermaidGraph; string: string };
                name: "DataflowMermaid";
                raw(
                    this: void,
                    graph:
                        | DataflowInformation
                        | DataflowGraph<DataflowGraphVertexInfo, DfEdge>,
                    includeEnvironments?: boolean,
                    mark?: ReadonlySet<NodeId>,
                    simplified?: boolean,
                ): string;
                url(
                    this: void,
                    graph:
                        | DataflowInformation
                        | DataflowGraph<DataflowGraphVertexInfo, DfEdge>,
                    includeEnvironments?: boolean,
                    mark?: ReadonlySet<NodeId>,
                    simplified?: boolean,
                ): string;
            };
            quads: {
                convert: (
                    graph: DataflowGraph,
                    config: QuadSerializationConfiguration,
                ) => string;
            };
        };
    }

    Helper object for call-graphs, you can compute new call graphs based on CallGraph.compute.

    Type Declaration