From acf62cce5f0b43834e739ed5a3995e4c559f5178 Mon Sep 17 00:00:00 2001 From: Akemi Izuko Date: Tue, 14 Nov 2023 18:13:22 -0700 Subject: [PATCH] Graphviz: reorganize --- graphviz/functions/gen_type.dot | 24 ------------------- .../functions/{ => statements}/gen_decl.dot | 0 .../{ => statements}/gen_global_decl.dot | 0 3 files changed, 24 deletions(-) delete mode 100644 graphviz/functions/gen_type.dot rename graphviz/functions/{ => statements}/gen_decl.dot (100%) rename graphviz/functions/{ => statements}/gen_global_decl.dot (100%) diff --git a/graphviz/functions/gen_type.dot b/graphviz/functions/gen_type.dot deleted file mode 100644 index 93d5fd7..0000000 --- a/graphviz/functions/gen_type.dot +++ /dev/null @@ -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; -} diff --git a/graphviz/functions/gen_decl.dot b/graphviz/functions/statements/gen_decl.dot similarity index 100% rename from graphviz/functions/gen_decl.dot rename to graphviz/functions/statements/gen_decl.dot diff --git a/graphviz/functions/gen_global_decl.dot b/graphviz/functions/statements/gen_global_decl.dot similarity index 100% rename from graphviz/functions/gen_global_decl.dot rename to graphviz/functions/statements/gen_global_decl.dot