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.
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.
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.