Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/problems/secondaryConstructorCfg.dot
T

113 lines
3.7 KiB
Plaintext
Vendored

digraph secondaryConstructorCfg_kt {
graph [nodesep=3]
node [shape=box penwidth=2]
edge [penwidth=2]
subgraph cluster_0 {
color=red
0 [label="Enter function <init>" style="filled" fillcolor=red];
2 [label="Delegated constructor call: super<R|kotlin/Any|>()"];
1 [label="Exit function <init>" style="filled" fillcolor=red];
}
0 -> {2};
2 -> {1};
subgraph cluster_1 {
color=red
20 [label="Enter function <init>" style="filled" fillcolor=red];
22 [label="Access variable R|<local>/p0|"];
23 [label="Delegated constructor call: this<R|B|>(...)"];
24 [label="Access variable R|<local>/p1|"];
25 [label="Assignment: R|/B.p3|"];
21 [label="Exit function <init>" style="filled" fillcolor=red];
}
20 -> {22};
22 -> {23};
23 -> {24};
24 -> {25};
25 -> {21};
subgraph cluster_2 {
color=red
35 [label="Enter class B" style="filled" fillcolor=red];
subgraph cluster_3 {
color=blue
16 [label="Enter function setter" style="filled" fillcolor=red];
17 [label="Exit function setter" style="filled" fillcolor=red];
}
subgraph cluster_4 {
color=blue
14 [label="Enter function getter" style="filled" fillcolor=red];
15 [label="Exit function getter" style="filled" fillcolor=red];
}
subgraph cluster_5 {
color=blue
8 [label="Enter function getter" style="filled" fillcolor=red];
9 [label="Exit function getter" style="filled" fillcolor=red];
}
subgraph cluster_6 {
color=blue
3 [label="Enter function getter" style="filled" fillcolor=red];
4 [label="Exit function getter" style="filled" fillcolor=red];
}
subgraph cluster_7 {
color=blue
5 [label="Enter property" style="filled" fillcolor=red];
7 [label="Access variable R|<local>/p0|"];
6 [label="Exit property" style="filled" fillcolor=red];
}
subgraph cluster_8 {
color=blue
10 [label="Enter property" style="filled" fillcolor=red];
12 [label="Access variable R|<local>/p0|"];
13 [label="Access variable R|kotlin/String.length|"];
11 [label="Exit property" style="filled" fillcolor=red];
}
subgraph cluster_9 {
color=blue
18 [label="Enter property" style="filled" fillcolor=red];
19 [label="Exit property" style="filled" fillcolor=red];
}
subgraph cluster_10 {
color=blue
26 [label="Enter init block" style="filled" fillcolor=red];
subgraph cluster_11 {
color=blue
28 [label="Enter block"];
29 [label="Access variable R|<local>/p0|"];
30 [label="Access variable R|kotlin/String.length|"];
31 [label="Assignment: R|/B.p1|"];
32 [label="Const: String()"];
33 [label="Assignment: R|/B.p3|"];
34 [label="Exit block"];
}
27 [label="Exit init block" style="filled" fillcolor=red];
}
36 [label="Exit class B" style="filled" fillcolor=red];
}
35 -> {5} [color=green];
5 -> {7};
6 -> {10} [color=green];
7 -> {6};
3 -> {4};
10 -> {12};
11 -> {18} [color=green];
12 -> {13};
13 -> {11};
8 -> {9};
18 -> {19};
19 -> {26} [color=green];
14 -> {15};
16 -> {17};
26 -> {28};
27 -> {36} [color=green];
28 -> {29};
29 -> {30};
30 -> {31};
31 -> {32};
32 -> {33};
33 -> {34};
34 -> {27};
}