32 lines
896 B
Plaintext
32 lines
896 B
Plaintext
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
|
|
b [label="gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
|
|
c [label="gen_character()" shape=diamond style=filled fillcolor=lightcoral];
|
|
d [label="create real"]
|
|
e [label="gen_integer()" shape=diamond style=filled fillcolor=lightcoral];
|
|
f [label="gen_real()" shape=diamond style=filled fillcolor=lightcoral];
|
|
g [label="gen_tuple()" shape=diamond style=filled fillcolor=lightcoral];
|
|
k [label="return" style=filled fillcolor=lightskyblue1];
|
|
|
|
{rank=same; b c e f g}
|
|
|
|
a -> b -> k;
|
|
a -> c -> k;
|
|
a -> e -> k;
|
|
a -> g -> k;
|
|
a -> d;
|
|
d -> e;
|
|
d -> f -> k;
|
|
}
|