Values_1.CodeGenEdgeSourceRepresents a directional edge in a directed acyclic graph (DAG).
type nonrec t = {source : CodeGenIdentifier.t;The ID of the node at which the edge starts.
*)target : CodeGenIdentifier.t;The ID of the node at which the edge ends.
*)targetParameter : CodeGenArgName.t option;The target of the edge.
*)}val make :
?targetParameter:??? ->
source:CodeGenIdentifier.t ->
target:CodeGenIdentifier.t ->
unit ->
t