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

    Interface ReconstructionResult

    interface ReconstructionResult {
        code: string | string[];
        files?: readonly { code: string; path: string | undefined }[];
        inlineWarnings?: InlineWarning[];
        linesWithAutoSelected: number;
    }
    Index
    code: string | string[]

    Returns the reconstructed code as string or array of code reconstructions (corresponding to the desired file indices in the Selection)

    files?: readonly { code: string; path: string | undefined }[]

    The reconstructed files, in loading order, each with the path it came from (absent for inline code). code holds the same parts, joined into one string when only a single file was reconstructed. Not set by the inlinings, whose whole purpose is to produce one self-contained text.

    inlineWarnings?: InlineWarning[]

    warnings raised while inlining source() calls (only set when Selection#inlineSources is active)

    linesWithAutoSelected: number

    number of lines that contain nodes that triggered the autoSelectIf predicate reconstructToCode