Test: FIR CFA: index nodes in rendering order

This commit is contained in:
pyos
2022-12-11 01:22:45 +01:00
committed by Dmitriy Novozhilov
parent a9397b7b23
commit 54f32a6fba
71 changed files with 6272 additions and 6323 deletions
@@ -12,18 +12,18 @@ digraph smartCastInInit_kt {
subgraph cluster_1 {
color=red
4 [label="Enter class S" style="filled" fillcolor=red];
5 [label="Exit class S" style="filled" fillcolor=red];
2 [label="Enter class S" style="filled" fillcolor=red];
3 [label="Exit class S" style="filled" fillcolor=red];
}
subgraph cluster_2 {
color=blue
2 [label="Enter function foo" style="filled" fillcolor=red];
3 [label="Exit function foo" style="filled" fillcolor=red];
4 [label="Enter function foo" style="filled" fillcolor=red];
5 [label="Exit function foo" style="filled" fillcolor=red];
}
4 -> {5} [color=green];
5 -> {2} [color=green];
5 -> {2} [style=dashed];
2 -> {3};
2 -> {3} [color=green];
3 -> {4} [color=green];
3 -> {4} [style=dashed];
4 -> {5};
subgraph cluster_3 {
color=red
@@ -49,37 +49,36 @@ digraph smartCastInInit_kt {
subgraph cluster_5 {
color=red
26 [label="Enter class Main" style="filled" fillcolor=red];
27 [label="Part of class initialization"];
14 [label="Enter class Main" style="filled" fillcolor=red];
15 [label="Part of class initialization"];
subgraph cluster_6 {
color=blue
17 [label="Enter init block" style="filled" fillcolor=red];
16 [label="Enter init block" style="filled" fillcolor=red];
subgraph cluster_7 {
color=blue
18 [label="Enter block"];
19 [label="Function call: R|/s|()" style="filled" fillcolor=yellow];
20 [label="Assignment: R|/Main.x|"];
21 [label="Access variable R|/Main.x|"];
22 [label="Smart cast: this@R|/Main|.R|/Main.x|"];
23 [label="Function call: this@R|/Main|.R|/Main.x|.R|/S.foo|()" style="filled" fillcolor=yellow];
24 [label="Exit block"];
17 [label="Enter block"];
18 [label="Function call: R|/s|()" style="filled" fillcolor=yellow];
19 [label="Assignment: R|/Main.x|"];
20 [label="Access variable R|/Main.x|"];
21 [label="Smart cast: this@R|/Main|.R|/Main.x|"];
22 [label="Function call: this@R|/Main|.R|/Main.x|.R|/S.foo|()" style="filled" fillcolor=yellow];
23 [label="Exit block"];
}
25 [label="Exit init block" style="filled" fillcolor=red];
24 [label="Exit init block" style="filled" fillcolor=red];
}
28 [label="Exit class Main" style="filled" fillcolor=red];
25 [label="Exit class Main" style="filled" fillcolor=red];
}
subgraph cluster_8 {
color=blue
14 [label="Enter function <init>" style="filled" fillcolor=red];
15 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
16 [label="Exit function <init>" style="filled" fillcolor=red];
26 [label="Enter function <init>" style="filled" fillcolor=red];
27 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
28 [label="Exit function <init>" style="filled" fillcolor=red];
}
26 -> {27} [color=green];
27 -> {17} [color=green];
27 -> {28} [style=dotted];
27 -> {17} [style=dashed];
28 -> {14} [color=green];
28 -> {14} [style=dashed];
14 -> {15} [color=green];
15 -> {16} [color=green];
15 -> {25} [style=dotted];
15 -> {16} [style=dashed];
16 -> {17};
17 -> {18};
18 -> {19};
19 -> {20};
@@ -87,9 +86,10 @@ digraph smartCastInInit_kt {
21 -> {22};
22 -> {23};
23 -> {24};
24 -> {25};
25 -> {28} [color=green];
14 -> {15};
15 -> {16};
24 -> {25} [color=green];
25 -> {26} [color=green];
25 -> {26} [style=dashed];
26 -> {27};
27 -> {28};
}