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"];
n930 [label="START", shape=box];
n930 -> n938;
n938 [label="10", shape=box];
n938 -> n939;
n939 [label="CALL square", shape=box, style=filled, color=orange];
n939 -> n932;
n932 [label="START square(x)", shape=box, style=filled, color=green];
n932 -> n935;
n935 [label="x", shape=box];
n935 -> n936;
n936 [label="x", shape=box];
n936 -> n937;
n937 [label="x * x", shape=box];
n937 -> n933;
n933 [label="END square(x)", shape=box, style=filled, color=green];
n933 -> n941;
n941 [label="RET square", shape=box, style=filled, color=orange];
n939 -> n941;
}