Function Graph Overview
    Preparing search index...

    Interface CFG

    The full CFG structure.

    interface CFG {
        graph: CFGGraph;
        entry: string;
        offsetToNode: Lookup<string>;
    }
    Index

    Properties

    graph: CFGGraph

    The graph itself

    entry

    entry: string

    The function's entry node

    offsetToNode: Lookup<string>

    A mapping between source-code offsets and their matching CFG nodes