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

    Result type for a successful envir-argument resolution.

    interface EnvirResolution<OtherInfo> {
        envDef: InGraphIdentifierDefinition & { name: Identifier } & {
            envState: REnvironmentInformation;
        };
        envirData: DataflowProcessorInformation<OtherInfo & ParentInformation>;
        envirNodeId: NodeId;
        stack?: StackEnv;
    }

    Type Parameters

    • OtherInfo
    Index
    envDef: InGraphIdentifierDefinition & { name: Identifier } & {
        envState: REnvironmentInformation;
    }

    The definition of the variable that holds the environment

    data with its environment replaced by the resolved envState for in-env lookups.

    envirNodeId: NodeId

    Node ID of the USE of the envir variable (e.g. the e in envir=e).

    stack?: StackEnv

    which real stack env this resolves to, absent for a tracked custom env; only 'global' reaches the real frame chain