@eagleoutice/flowr - v2.15.8
    Preparing search index...
    interface Selection {
        inlineFull?: InlineFull;
        inlineSources?: boolean;
        nodes: ReadonlySet<NodeId>;
        reconstructFiles?: number[] | "all";
        sourceMap?: ReadonlyMap<NodeId, number>;
    }
    Index
    inlineFull?: InlineFull

    If set, every file is reconstructed into a single self-contained text, in flowR's loading order; files sourced explicitly are spliced into their source() call instead of repeated at the top level ('banner' names each).

    inlineSources?: boolean

    If set, selected source() calls are replaced by the (spliced) reconstruction of the sourced file, producing a single self-contained reconstruction. Requires Selection#sourceMap; overrides Selection#reconstructFiles.

    nodes: ReadonlySet<NodeId>

    The set of node ids to be reconstructed.

    reconstructFiles?: number[] | "all"

    ReconstructRequiredInput#reconstructFiles

    sourceMap?: ReadonlyMap<NodeId, number>

    Maps a source() call node id to the index of the sourced file in ast.ast.files. Only used together with Selection#inlineSources or Selection#inlineFull. Build it via buildSourceInlineMap.