Remove edges in constructor

This commit is contained in:
Jan-Niclas Loosen
2026-01-22 20:26:41 +01:00
parent 3abe8581b5
commit 51028555de
77 changed files with 3964 additions and 309 deletions

View File

@@ -0,0 +1,21 @@
digraph CFG {
node [fontname="Helvetica"];
n834 [label="START", shape=box];
n834 -> n842;
n842 [label="2", shape=box];
n842 -> n843;
n843 [label="CALL g", shape=box, style=filled, color=orange];
n843 -> n836;
n836 [label="START g(x, y)", shape=box, style=filled, color=green];
n836 -> n839;
n839 [label="3", shape=box];
n839 -> n840;
n840 [label="y = 3", shape=box];
n840 -> n841;
n841 [label="x", shape=box];
n841 -> n837;
n837 [label="END g(x, y)", shape=box, style=filled, color=green];
n837 -> n845;
n845 [label="RET g", shape=box, style=filled, color=orange];
n843 -> n845;
}