56 lines
1.7 KiB
Plaintext
Vendored
56 lines
1.7 KiB
Plaintext
Vendored
digraph smartcastOnLambda_kt {
|
|
graph [nodesep=3]
|
|
node [shape=box penwidth=2]
|
|
edge [penwidth=2]
|
|
|
|
subgraph cluster_0 {
|
|
color=red
|
|
0 [label="Enter function test" style="filled" fillcolor=red];
|
|
subgraph cluster_1 {
|
|
color=blue
|
|
1 [label="Enter block"];
|
|
subgraph cluster_2 {
|
|
color=blue
|
|
2 [label="Enter when"];
|
|
subgraph cluster_3 {
|
|
color=blue
|
|
3 [label="Enter when branch condition "];
|
|
4 [label="Access variable R|<local>/func|"];
|
|
5 [label="Const: Null(null)"];
|
|
6 [label="Equality operator !="];
|
|
7 [label="Exit when branch condition"];
|
|
}
|
|
8 [label="Synthetic else branch"];
|
|
9 [label="Enter when branch result"];
|
|
subgraph cluster_4 {
|
|
color=blue
|
|
10 [label="Enter block"];
|
|
11 [label="Function call: R|<local>/func|.R|SubstitutionOverride<kotlin/Function0.invoke: R|kotlin/Unit|>|()" style="filled" fillcolor=yellow];
|
|
12 [label="Exit block"];
|
|
}
|
|
13 [label="Exit when branch result"];
|
|
14 [label="Exit when"];
|
|
}
|
|
15 [label="Exit block"];
|
|
}
|
|
16 [label="Exit function test" style="filled" fillcolor=red];
|
|
}
|
|
0 -> {1};
|
|
1 -> {2};
|
|
2 -> {3};
|
|
3 -> {4};
|
|
4 -> {5};
|
|
5 -> {6};
|
|
6 -> {7};
|
|
7 -> {8 9};
|
|
8 -> {14};
|
|
9 -> {10};
|
|
10 -> {11};
|
|
11 -> {12};
|
|
12 -> {13};
|
|
13 -> {14};
|
|
14 -> {15};
|
|
15 -> {16};
|
|
|
|
}
|