walpurgis/graphviz/functions/gen_global_decl.dot

32 lines
943 B
Plaintext

digraph fn_gen_decl {
labelloc="t";
graph [fontname = "cc wild words"];
node [fontname = "cc wild words"];
edge [fontname = "cc wild words"];
label="fn_gen_decl_global(type: GazType)";
fontname=lovebeat;
rankdir=LR;
newrank=true;
a [label="fork on type"];
b [label="gen_boolean(global=true)" shape=diamond style=filled fillcolor=lightcoral];
c [label="gen_character(global=true)" shape=diamond style=filled fillcolor=lightcoral];
d [label="create real"]
e [label="gen_integer(global=true)" shape=diamond style=filled fillcolor=lightcoral];
f [label="gen_real(global=true)" shape=diamond style=filled fillcolor=lightcoral];
g [label="gen_tuple(global=true)" shape=diamond style=filled fillcolor=lightcoral];
h [label="push to global scope"];
i [label="return" style=filled fillcolor=lightskyblue1];
a -> b -> h;
a -> c -> h;
a -> e -> h;
a -> g -> h;
a -> d;
d -> e;
d -> f -> h;
h -> i;
}