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

    what GraphHelper.reachable follows and where it stops

    interface ReachOptions {
        cds?: boolean;
        consider?: ReadonlySet<NodeId>;
        follow?: number;
        stopAt?: (id: NodeId) => boolean;
    }
    Index
    cds?: boolean

    whether the control dependencies of a vertex count as edges of their own

    consider?: ReadonlySet<NodeId>

    the only ids the walk may enter, e.g. the ids of one function definition

    follow?: number

    the edge types to follow, every edge when left out

    stopAt?: (id: NodeId) => boolean

    an endpoint: it is part of the result, what it leads to is not