Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/cfg/postponedLambdas.dot
T
2020-04-03 10:08:24 +03:00

42 lines
1.2 KiB
Plaintext
Vendored

digraph postponedLambdas_kt {
graph [nodesep=3]
node [shape=box penwidth=2]
edge [penwidth=2]
subgraph cluster_0 {
color=red
0 [label="Enter function foo" style="filled" fillcolor=red];
1 [label="Exit function foo" style="filled" fillcolor=red];
}
0 -> {1};
subgraph cluster_1 {
color=red
2 [label="Enter function test" style="filled" fillcolor=red];
4 [label="Access variable R|<local>/a|"];
5 [label="Postponed enter to lambda"];
subgraph cluster_2 {
color=blue
9 [label="Enter function anonymousFunction" style="filled" fillcolor=red];
11 [label="Const: String()"];
10 [label="Exit function anonymousFunction" style="filled" fillcolor=red];
}
6 [label="Postponed exit from lambda"];
7 [label="Access variable R|<local>/b|"];
8 [label="Function call: R|/foo|(...)"];
3 [label="Exit function test" style="filled" fillcolor=red];
}
2 -> {4};
4 -> {5};
5 -> {9};
5 -> {6} [color=red];
6 -> {7};
7 -> {8};
8 -> {3};
9 -> {10 11};
10 -> {9};
10 -> {6} [color=green];
11 -> {10};
}