Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/cfg/initBlockAndInPlaceLambda.dot
T
2020-06-03 10:43:37 +03:00

97 lines
3.2 KiB
Plaintext
Vendored

digraph initBlockAndInPlaceLambda_kt {
graph [nodesep=3]
node [shape=box penwidth=2]
edge [penwidth=2]
subgraph cluster_0 {
color=red
0 [label="Enter class B" style="filled" fillcolor=red];
1 [label="Exit class B" style="filled" fillcolor=red];
}
0 -> {1} [color=green];
subgraph cluster_1 {
color=red
6 [label="Enter class A" style="filled" fillcolor=red];
subgraph cluster_2 {
color=blue
2 [label="Enter function getter" style="filled" fillcolor=red];
3 [label="Exit function getter" style="filled" fillcolor=red];
}
subgraph cluster_3 {
color=blue
4 [label="Enter property" style="filled" fillcolor=red];
5 [label="Exit property" style="filled" fillcolor=red];
}
7 [label="Exit class A" style="filled" fillcolor=red];
}
6 -> {4} [color=green];
4 -> {5};
5 -> {7} [color=green];
2 -> {3};
subgraph cluster_4 {
color=red
8 [label="Enter function <init>" style="filled" fillcolor=red];
10 [label="Delegated constructor call: super<R|kotlin/Any|>()"];
9 [label="Exit function <init>" style="filled" fillcolor=red];
}
8 -> {10};
10 -> {9};
subgraph cluster_5 {
color=red
29 [label="Enter class C" style="filled" fillcolor=red];
subgraph cluster_6 {
color=blue
16 [label="Enter init block" style="filled" fillcolor=red];
subgraph cluster_7 {
color=blue
18 [label="Enter block"];
19 [label="Access variable R|<local>/a|"];
20 [label="Access variable R|/A.b|"];
21 [label="Enter safe call"];
23 [label="Postponed enter to lambda"];
subgraph cluster_8 {
color=blue
11 [label="Enter function anonymousFunction" style="filled" fillcolor=red];
13 [label="Access variable R|<local>/a|"];
14 [label="Access variable R|<local>/it|"];
15 [label="Function call: R|/C.C|(...)"];
12 [label="Exit function anonymousFunction" style="filled" fillcolor=red];
}
26 [label="Call arguments union" style="filled" fillcolor=yellow];
24 [label="Postponed exit from lambda"];
25 [label="Function call: $subj$.R|kotlin/let|<R|B|, R|C|>(...)"];
22 [label="Exit safe call"];
27 [label="Variable declaration: lval c: R|C?|"];
28 [label="Exit block"];
}
17 [label="Exit init block" style="filled" fillcolor=red];
}
30 [label="Exit class C" style="filled" fillcolor=red];
}
29 -> {16} [color=green];
16 -> {18};
17 -> {30} [color=green];
18 -> {19};
19 -> {20};
20 -> {21 22};
21 -> {23};
22 -> {27};
23 -> {11};
23 -> {24} [color=red];
24 -> {25} [color=green];
25 -> {22};
26 -> {25} [color=red];
27 -> {28};
28 -> {17};
11 -> {13};
12 -> {24} [color=green];
12 -> {26} [color=red];
13 -> {14};
14 -> {15};
15 -> {12};
}