interface PatchFunctionCallInput<OtherInfo> {
    argumentProcessResult: readonly (
        undefined
        | Pick<DataflowInformation, "entryPoint">
    )[];
    data: DataflowProcessorInformation<OtherInfo & ParentInformation>;
    name: RSymbol<OtherInfo & ParentInformation>;
    nextGraph: DataflowGraph;
    rootId: NodeId;
}

Type Parameters

  • OtherInfo

Properties

argumentProcessResult: readonly (
    undefined
    | Pick<DataflowInformation, "entryPoint">
)[]
nextGraph: DataflowGraph
rootId: NodeId