Graphviz: reorganize

This commit is contained in:
Akemi Izuko 2023-11-14 18:13:22 -07:00
parent 483832e7a4
commit acf62cce5f
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC
3 changed files with 0 additions and 24 deletions

View file

@ -1,24 +0,0 @@
digraph fn_gen_type {
rankdir=TB;
labelloc="t";
graph [fontname = "cc wild words"];
node [fontname = "cc wild words"];
edge [fontname = "cc wild words"];
label="fn_gen_type(GazType)";
fontname=lovebeat;
rankdir=TB;
newrank=true;
A [label="expr for type"];
B [label="literal"];
C [label="variable"];
D [label="subroutine"];
F [label="return" style=filled fillcolor=lightskyblue1];
A -> A [dir=back];
A -> B -> A;
A -> C -> A;
A -> D -> A;
A -> F;
}