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

Type Parameters

  • OtherInfo

Properties

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