walpurgis/graphviz/functions/get_instant.dot

35 lines
674 B
Plaintext
Raw Normal View History

2023-11-14 17:04:06 -07:00
digraph fn_get_instant {
labelloc="t";
graph [fontname = "cc wild words"];
node [fontname = "cc wild words"];
edge [fontname = "cc wild words"];
2023-11-14 18:11:43 -07:00
label="fn_gen_instant(type: GazType)";
2023-11-14 17:04:06 -07:00
fontname=lovebeat;
rankdir=TB;
newrank=true;
a0 [label="choice" rank=max];
a1 [label="suitable subroutine"];
a2 [label="suitable variable"];
a3 [label="suitable literal"];
{rank=same; a1 a2 a3}
a4 [label="subroutine"];
a5 [label="variable"];
a6 [label="literal"];
a7 [label="return" shape=oval style=filled fillcolor=lightskyblue1];
a0 -> a1;
a0 -> a2;
a0 -> a3;
a1 -> a4 -> a7;
a1 -> a2;
a2 -> a5 -> a7;
a2 -> a3;
a3 -> a6 -> a7;
}