• Finds all linked function definitions starting from the given set of read ids. This is a complicated function, please only call it if you know what you are doing. For example, if you are interested in the called functions of a function call, use getAllFunctionCallTargets instead. This function here expects you to handle the accessed objects yourself (e.g,. already resolve the first layer of reads/returns/calls/... or resolve the identifier by name) and then pass in the relevant read ids.

    Parameters

    Returns [
        Set<Required<DataflowGraphVertexFunctionDefinition>>,
        Set<`built-in:${string}`>,
    ]

    Consider a scenario like this:

    x <- function() 3
    x()

    To resolve the call x in the second line, use getAllFunctionCallTargets! To know what fdefs the definition of x in the first line links to, you can use this function.