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

    A warning raised while inlining source() calls during reconstruction.

    reconstructToCode

    interface InlineWarning {
        callId: NodeId;
        kind: "cycle" | "unresolved";
        path?: string;
    }
    Index

    Properties

    Properties

    callId: NodeId

    the id of the source() function-call node that triggered the warning

    kind: "cycle" | "unresolved"
    • cycle: the source() would re-inline a file already being inlined on the current path; the literal call is kept at the cycle edge to break the recursion.
    • unresolved: the source() survived the slice but could not be linked to a file (dynamic or missing path); the literal call is kept verbatim.
    path?: string

    the (best-effort) path of the file that was meant to be sourced, if known