walpurgis/graphviz/functions/statements/gen_assign.dot

27 lines
829 B
Plaintext
Raw Permalink Normal View History

2023-11-14 18:11:43 -07:00
digraph fn_gen_assignment {
labelloc="t";
graph [fontname = "cc wild words"];
node [fontname = "cc wild words"];
edge [fontname = "cc wild words"];
label="fn_gen_assignment(type: GazType)";
fontname=lovebeat;
rankdir=LR;
newrank=true;
a [label="fork on type"];
// read from stdinput
2023-11-15 14:52:41 -07:00
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightsalmon];
c [label="gen_character()" shape=diamond style=filled fillcolor=lightsalmon];
d [label="gen_integer()" shape=diamond style=filled fillcolor=lightsalmon];
e [label="gen_real()" shape=diamond style=filled fillcolor=lightsalmon];
f [label="gen_tuple()" shape=diamond style=filled fillcolor=lightsalmon];
g [label="return" style=filled fillcolor=lightskyblue1];
2023-11-14 18:11:43 -07:00
a -> b -> g;
a -> c -> g;
a -> d -> g;
a -> e -> g;
a -> f -> g;
2023-11-14 18:11:43 -07:00
}