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 2 [label="Enter class A" style="filled" fillcolor=red]; 3 [label="Exit class A" style="filled" fillcolor=red]; } 2 -> {3} [color=green]; subgraph cluster_2 { color=red 4 [label="Enter function " style="filled" fillcolor=red]; 5 [label="Delegated constructor call: super()"]; 6 [label="Exit function " style="filled" fillcolor=red]; } 4 -> {5}; 5 -> {6}; subgraph cluster_3 { color=red 7 [label="Enter init block" style="filled" fillcolor=red]; subgraph cluster_4 { color=blue 8 [label="Enter block"]; 9 [label="Access variable R|/a|"]; 10 [label="Access variable R|/A.b|"]; 11 [label="Enter safe call"]; 12 [label="Postponed enter to lambda"]; subgraph cluster_5 { color=blue 20 [label="Enter function anonymousFunction" style="filled" fillcolor=red]; subgraph cluster_6 { color=blue 21 [label="Enter block"]; 22 [label="Access variable R|/a|"]; 23 [label="Access variable R|/it|"]; 24 [label="Function call: R|/C.C|(...)"]; 25 [label="Exit block"]; } 26 [label="Exit function anonymousFunction" style="filled" fillcolor=red]; } 13 [label="Call arguments union" style="filled" fillcolor=yellow]; 14 [label="Postponed exit from lambda"]; 15 [label="Function call: $subj$.R|kotlin/let|(...)"]; 16 [label="Exit safe call"]; 17 [label="Variable declaration: lval c: R|C?|"]; 18 [label="Exit block"]; } 19 [label="Exit init block" style="filled" fillcolor=red]; } 7 -> {8}; 8 -> {9}; 9 -> {10}; 10 -> {11 16}; 11 -> {12}; 12 -> {20}; 12 -> {14} [color=red]; 12 -> {20} [style=dashed]; 13 -> {15} [color=red]; 14 -> {15} [color=green]; 15 -> {16}; 16 -> {17}; 17 -> {18}; 18 -> {19}; 19 -> {29} [color=green]; 20 -> {21}; 21 -> {22}; 22 -> {23}; 23 -> {24}; 24 -> {25}; 25 -> {26}; 26 -> {13} [color=red]; 26 -> {14} [color=green]; subgraph cluster_7 { color=red 27 [label="Enter class C" style="filled" fillcolor=red]; 28 [label="Part of class initialization"]; 29 [label="Exit class C" style="filled" fillcolor=red]; } 27 -> {28} [color=green]; 28 -> {29} [style=dotted]; 28 -> {7} [color=green]; 28 -> {7} [style=dashed]; }