[FIR-TEST] Update CFG dumps according to new nodes order
This commit is contained in:
+42
-42
@@ -19,10 +19,10 @@ digraph safeCalls_kt {
|
||||
|
||||
subgraph cluster_2 {
|
||||
color=red
|
||||
5 [label="Enter class A" style="filled" fillcolor=red];
|
||||
4 [label="Exit class A" style="filled" fillcolor=red];
|
||||
4 [label="Enter class A" style="filled" fillcolor=red];
|
||||
5 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
5 -> {4} [color=green];
|
||||
4 -> {5} [color=green];
|
||||
|
||||
subgraph cluster_3 {
|
||||
color=red
|
||||
@@ -40,65 +40,65 @@ digraph safeCalls_kt {
|
||||
|
||||
subgraph cluster_5 {
|
||||
color=red
|
||||
11 [label="Enter class B" style="filled" fillcolor=red];
|
||||
10 [label="Exit class B" style="filled" fillcolor=red];
|
||||
10 [label="Enter class B" style="filled" fillcolor=red];
|
||||
11 [label="Exit class B" style="filled" fillcolor=red];
|
||||
}
|
||||
11 -> {10} [color=green];
|
||||
10 -> {11} [color=green];
|
||||
|
||||
subgraph cluster_6 {
|
||||
color=red
|
||||
12 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_7 {
|
||||
color=blue
|
||||
14 [label="Enter block"];
|
||||
15 [label="Access variable R|<local>/x|"];
|
||||
16 [label="Enter safe call"];
|
||||
18 [label="Function call: $subj$.R|/A.foo|()"];
|
||||
13 [label="Enter block"];
|
||||
14 [label="Access variable R|<local>/x|"];
|
||||
15 [label="Enter safe call"];
|
||||
16 [label="Function call: $subj$.R|/A.foo|()"];
|
||||
17 [label="Exit safe call"];
|
||||
19 [label="Enter safe call"];
|
||||
21 [label="Function call: $subj$.R|/A.bar|()"];
|
||||
18 [label="Enter safe call"];
|
||||
19 [label="Function call: $subj$.R|/A.bar|()"];
|
||||
20 [label="Exit safe call"];
|
||||
22 [label="Exit block"];
|
||||
21 [label="Exit block"];
|
||||
}
|
||||
13 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
22 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
}
|
||||
12 -> {14};
|
||||
14 -> {15};
|
||||
15 -> {16 17};
|
||||
16 -> {18};
|
||||
17 -> {19 20};
|
||||
18 -> {17};
|
||||
19 -> {21};
|
||||
20 -> {22};
|
||||
21 -> {20};
|
||||
22 -> {13};
|
||||
12 -> {13};
|
||||
13 -> {14};
|
||||
14 -> {15 17};
|
||||
15 -> {16};
|
||||
16 -> {17};
|
||||
17 -> {18 20};
|
||||
18 -> {19};
|
||||
19 -> {20};
|
||||
20 -> {21};
|
||||
21 -> {22};
|
||||
|
||||
subgraph cluster_8 {
|
||||
color=red
|
||||
23 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_9 {
|
||||
color=blue
|
||||
25 [label="Enter block"];
|
||||
26 [label="Access variable R|<local>/x|"];
|
||||
27 [label="Enter safe call"];
|
||||
29 [label="Access variable R|/B.foo|"];
|
||||
24 [label="Enter block"];
|
||||
25 [label="Access variable R|<local>/x|"];
|
||||
26 [label="Enter safe call"];
|
||||
27 [label="Access variable R|/B.foo|"];
|
||||
28 [label="Exit safe call"];
|
||||
30 [label="Enter safe call"];
|
||||
32 [label="Access variable R|/B.bar|"];
|
||||
29 [label="Enter safe call"];
|
||||
30 [label="Access variable R|/B.bar|"];
|
||||
31 [label="Exit safe call"];
|
||||
33 [label="Exit block"];
|
||||
32 [label="Exit block"];
|
||||
}
|
||||
24 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
33 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
}
|
||||
23 -> {25};
|
||||
25 -> {26};
|
||||
26 -> {27 28};
|
||||
27 -> {29};
|
||||
28 -> {30 31};
|
||||
29 -> {28};
|
||||
30 -> {32};
|
||||
31 -> {33};
|
||||
32 -> {31};
|
||||
33 -> {24};
|
||||
23 -> {24};
|
||||
24 -> {25};
|
||||
25 -> {26 28};
|
||||
26 -> {27};
|
||||
27 -> {28};
|
||||
28 -> {29 31};
|
||||
29 -> {30};
|
||||
30 -> {31};
|
||||
31 -> {32};
|
||||
32 -> {33};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user