walpurgis/graphviz/functions/statements/gen_if_statement.dot

33 lines
965 B
Plaintext
Raw Normal View History

2023-11-14 18:11:43 -07:00
digraph fn_gen_if_statement {
labelloc="t";
graph [fontname = "cc wild words"];
node [fontname = "cc wild words"];
edge [fontname = "cc wild words"];
label="fn_gen_if_statement(with_return: Option<GazType>)";
fontname=lovebeat;
rankdir=TB;
newrank=true;
a [label="gen_boolean()" shape=diamond style=filled fillcolor=lightcoral];
b [label="push new scope"];
c [label="gen_statement(with_return)" shape=diamond style=filled fillcolor=lightcoral];
d [label="choice"];
e [label="else if"];
f [label="gen_if_statement(with_return)" shape=diamond style=filled fillcolor=lightcoral];
g [label="else"];
h [label="push new scope"];
i [label="gen_statement(with_return)" shape=diamond style=filled fillcolor=lightcoral];
j [label="return" style=filled fillcolor=lightskyblue1];
{rank=same; e g}
{rank=same; f i}
a -> b -> c -> d;
d -> e -> f -> d;
d -> g -> h -> i -> j;
d -> j;
c -> c [dir=back];
i -> i [dir=back];
}