[FIR] Create CFG for files to track top-level property initialization
In order to properly analyze top-level property initialization, a control-flow graph must be created for FirFiles. This change adds the foundation for the file CFG and updates body resolve to create the CFG. Checking the CFG for proper initialization is separated into a following change to ease code review. KT-56683
This commit is contained in:
+283
-276
@@ -5,110 +5,115 @@ digraph assignSafeCall_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
0 [label="Enter class A" style="filled" fillcolor=red];
|
||||
subgraph cluster_1 {
|
||||
color=blue
|
||||
1 [label="Enter property" style="filled" fillcolor=red];
|
||||
2 [label="Const: Int(1)"];
|
||||
3 [label="Exit property" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_2 {
|
||||
color=blue
|
||||
4 [label="Enter function <init>" style="filled" fillcolor=red];
|
||||
5 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
|
||||
6 [label="Exit function <init>" style="filled" fillcolor=red];
|
||||
}
|
||||
7 [label="Exit class A" style="filled" fillcolor=red];
|
||||
0 [label="Enter file assignSafeCall.kt" style="filled" fillcolor=red];
|
||||
1 [label="Exit file assignSafeCall.kt" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1} [color=green];
|
||||
0 -> {7} [style=dotted];
|
||||
0 -> {1 4} [style=dashed];
|
||||
1 -> {2};
|
||||
2 -> {3};
|
||||
3 -> {4} [color=green];
|
||||
|
||||
subgraph cluster_1 {
|
||||
color=red
|
||||
2 [label="Enter class A" style="filled" fillcolor=red];
|
||||
subgraph cluster_2 {
|
||||
color=blue
|
||||
3 [label="Enter property" style="filled" fillcolor=red];
|
||||
4 [label="Const: Int(1)"];
|
||||
5 [label="Exit property" style="filled" fillcolor=red];
|
||||
}
|
||||
subgraph cluster_3 {
|
||||
color=blue
|
||||
6 [label="Enter function <init>" style="filled" fillcolor=red];
|
||||
7 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
|
||||
8 [label="Exit function <init>" style="filled" fillcolor=red];
|
||||
}
|
||||
9 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3} [color=green];
|
||||
2 -> {9} [style=dotted];
|
||||
2 -> {3 6} [style=dashed];
|
||||
3 -> {4};
|
||||
4 -> {5};
|
||||
5 -> {6};
|
||||
6 -> {7} [color=green];
|
||||
5 -> {6} [color=green];
|
||||
6 -> {7};
|
||||
7 -> {8};
|
||||
8 -> {9} [color=green];
|
||||
|
||||
subgraph cluster_3 {
|
||||
subgraph cluster_4 {
|
||||
color=red
|
||||
8 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
subgraph cluster_4 {
|
||||
10 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
subgraph cluster_5 {
|
||||
color=blue
|
||||
9 [label="Enter block"];
|
||||
10 [label="Const: Int(1)"];
|
||||
11 [label="Jump: ^foo Int(1)"];
|
||||
12 [label="Stub" style="filled" fillcolor=gray];
|
||||
13 [label="Exit block" style="filled" fillcolor=gray];
|
||||
11 [label="Enter block"];
|
||||
12 [label="Const: Int(1)"];
|
||||
13 [label="Jump: ^foo Int(1)"];
|
||||
14 [label="Stub" style="filled" fillcolor=gray];
|
||||
15 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
14 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
16 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
8 -> {9};
|
||||
9 -> {10};
|
||||
10 -> {11};
|
||||
11 -> {14};
|
||||
11 -> {12} [style=dotted];
|
||||
12 -> {13} [style=dotted];
|
||||
11 -> {12};
|
||||
12 -> {13};
|
||||
13 -> {16};
|
||||
13 -> {14} [style=dotted];
|
||||
14 -> {15} [style=dotted];
|
||||
15 -> {16} [style=dotted];
|
||||
|
||||
subgraph cluster_5 {
|
||||
subgraph cluster_6 {
|
||||
color=red
|
||||
15 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
subgraph cluster_6 {
|
||||
17 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
subgraph cluster_7 {
|
||||
color=blue
|
||||
16 [label="Enter block"];
|
||||
17 [label="Exit block"];
|
||||
18 [label="Enter block"];
|
||||
19 [label="Exit block"];
|
||||
}
|
||||
18 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
20 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
}
|
||||
15 -> {16};
|
||||
16 -> {17};
|
||||
17 -> {18};
|
||||
18 -> {19};
|
||||
19 -> {20};
|
||||
|
||||
subgraph cluster_7 {
|
||||
subgraph cluster_8 {
|
||||
color=red
|
||||
19 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_8 {
|
||||
21 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_9 {
|
||||
color=blue
|
||||
20 [label="Enter block"];
|
||||
21 [label="Access variable R|<local>/a|"];
|
||||
22 [label="Enter safe call"];
|
||||
23 [label="Access variable R|/A.x|"];
|
||||
24 [label="Exit safe call"];
|
||||
25 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_9 {
|
||||
22 [label="Enter block"];
|
||||
23 [label="Access variable R|<local>/a|"];
|
||||
24 [label="Enter safe call"];
|
||||
25 [label="Access variable R|/A.x|"];
|
||||
26 [label="Exit safe call"];
|
||||
27 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_10 {
|
||||
color=blue
|
||||
26 [label="Enter when"];
|
||||
subgraph cluster_10 {
|
||||
color=blue
|
||||
27 [label="Enter when branch condition "];
|
||||
28 [label="Access variable R|<local>/x|"];
|
||||
29 [label="Const: Null(null)"];
|
||||
30 [label="Equality operator !="];
|
||||
31 [label="Exit when branch condition"];
|
||||
}
|
||||
32 [label="Synthetic else branch"];
|
||||
33 [label="Enter when branch result"];
|
||||
28 [label="Enter when"];
|
||||
subgraph cluster_11 {
|
||||
color=blue
|
||||
34 [label="Enter block"];
|
||||
35 [label="Access variable R|<local>/a|"];
|
||||
36 [label="Smart cast: R|<local>/a|"];
|
||||
37 [label="Function call: R|<local>/a|.R|/A.bar|()" style="filled" fillcolor=yellow];
|
||||
38 [label="Exit block"];
|
||||
29 [label="Enter when branch condition "];
|
||||
30 [label="Access variable R|<local>/x|"];
|
||||
31 [label="Const: Null(null)"];
|
||||
32 [label="Equality operator !="];
|
||||
33 [label="Exit when branch condition"];
|
||||
}
|
||||
39 [label="Exit when branch result"];
|
||||
40 [label="Exit when"];
|
||||
34 [label="Synthetic else branch"];
|
||||
35 [label="Enter when branch result"];
|
||||
subgraph cluster_12 {
|
||||
color=blue
|
||||
36 [label="Enter block"];
|
||||
37 [label="Access variable R|<local>/a|"];
|
||||
38 [label="Smart cast: R|<local>/a|"];
|
||||
39 [label="Function call: R|<local>/a|.R|/A.bar|()" style="filled" fillcolor=yellow];
|
||||
40 [label="Exit block"];
|
||||
}
|
||||
41 [label="Exit when branch result"];
|
||||
42 [label="Exit when"];
|
||||
}
|
||||
41 [label="Exit block"];
|
||||
43 [label="Exit block"];
|
||||
}
|
||||
42 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
44 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
}
|
||||
19 -> {20};
|
||||
20 -> {21};
|
||||
21 -> {22 24};
|
||||
21 -> {22};
|
||||
22 -> {23};
|
||||
23 -> {24};
|
||||
23 -> {24 26};
|
||||
24 -> {25};
|
||||
25 -> {26};
|
||||
26 -> {27};
|
||||
@@ -116,10 +121,10 @@ digraph assignSafeCall_kt {
|
||||
28 -> {29};
|
||||
29 -> {30};
|
||||
30 -> {31};
|
||||
31 -> {32 33};
|
||||
32 -> {40};
|
||||
33 -> {34};
|
||||
34 -> {35};
|
||||
31 -> {32};
|
||||
32 -> {33};
|
||||
33 -> {34 35};
|
||||
34 -> {42};
|
||||
35 -> {36};
|
||||
36 -> {37};
|
||||
37 -> {38};
|
||||
@@ -127,51 +132,51 @@ digraph assignSafeCall_kt {
|
||||
39 -> {40};
|
||||
40 -> {41};
|
||||
41 -> {42};
|
||||
42 -> {43};
|
||||
43 -> {44};
|
||||
|
||||
subgraph cluster_12 {
|
||||
subgraph cluster_13 {
|
||||
color=red
|
||||
43 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_13 {
|
||||
45 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_14 {
|
||||
color=blue
|
||||
44 [label="Enter block"];
|
||||
45 [label="Access variable R|<local>/a|"];
|
||||
46 [label="Enter safe call"];
|
||||
47 [label="Function call: $subj$.R|/A.foo|()" style="filled" fillcolor=yellow];
|
||||
48 [label="Exit safe call"];
|
||||
49 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_14 {
|
||||
46 [label="Enter block"];
|
||||
47 [label="Access variable R|<local>/a|"];
|
||||
48 [label="Enter safe call"];
|
||||
49 [label="Function call: $subj$.R|/A.foo|()" style="filled" fillcolor=yellow];
|
||||
50 [label="Exit safe call"];
|
||||
51 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_15 {
|
||||
color=blue
|
||||
50 [label="Enter when"];
|
||||
subgraph cluster_15 {
|
||||
color=blue
|
||||
51 [label="Enter when branch condition "];
|
||||
52 [label="Access variable R|<local>/x|"];
|
||||
53 [label="Const: Null(null)"];
|
||||
54 [label="Equality operator !="];
|
||||
55 [label="Exit when branch condition"];
|
||||
}
|
||||
56 [label="Synthetic else branch"];
|
||||
57 [label="Enter when branch result"];
|
||||
52 [label="Enter when"];
|
||||
subgraph cluster_16 {
|
||||
color=blue
|
||||
58 [label="Enter block"];
|
||||
59 [label="Access variable R|<local>/a|"];
|
||||
60 [label="Smart cast: R|<local>/a|"];
|
||||
61 [label="Function call: R|<local>/a|.R|/A.bar|()" style="filled" fillcolor=yellow];
|
||||
62 [label="Exit block"];
|
||||
53 [label="Enter when branch condition "];
|
||||
54 [label="Access variable R|<local>/x|"];
|
||||
55 [label="Const: Null(null)"];
|
||||
56 [label="Equality operator !="];
|
||||
57 [label="Exit when branch condition"];
|
||||
}
|
||||
63 [label="Exit when branch result"];
|
||||
64 [label="Exit when"];
|
||||
58 [label="Synthetic else branch"];
|
||||
59 [label="Enter when branch result"];
|
||||
subgraph cluster_17 {
|
||||
color=blue
|
||||
60 [label="Enter block"];
|
||||
61 [label="Access variable R|<local>/a|"];
|
||||
62 [label="Smart cast: R|<local>/a|"];
|
||||
63 [label="Function call: R|<local>/a|.R|/A.bar|()" style="filled" fillcolor=yellow];
|
||||
64 [label="Exit block"];
|
||||
}
|
||||
65 [label="Exit when branch result"];
|
||||
66 [label="Exit when"];
|
||||
}
|
||||
65 [label="Exit block"];
|
||||
67 [label="Exit block"];
|
||||
}
|
||||
66 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
68 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
}
|
||||
43 -> {44};
|
||||
44 -> {45};
|
||||
45 -> {46 48};
|
||||
45 -> {46};
|
||||
46 -> {47};
|
||||
47 -> {48};
|
||||
47 -> {48 50};
|
||||
48 -> {49};
|
||||
49 -> {50};
|
||||
50 -> {51};
|
||||
@@ -179,10 +184,10 @@ digraph assignSafeCall_kt {
|
||||
52 -> {53};
|
||||
53 -> {54};
|
||||
54 -> {55};
|
||||
55 -> {56 57};
|
||||
56 -> {64};
|
||||
57 -> {58};
|
||||
58 -> {59};
|
||||
55 -> {56};
|
||||
56 -> {57};
|
||||
57 -> {58 59};
|
||||
58 -> {66};
|
||||
59 -> {60};
|
||||
60 -> {61};
|
||||
61 -> {62};
|
||||
@@ -190,42 +195,42 @@ digraph assignSafeCall_kt {
|
||||
63 -> {64};
|
||||
64 -> {65};
|
||||
65 -> {66};
|
||||
|
||||
subgraph cluster_17 {
|
||||
color=red
|
||||
67 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_18 {
|
||||
color=blue
|
||||
68 [label="Enter block"];
|
||||
69 [label="Access variable R|<local>/x|"];
|
||||
70 [label="Type operator: (R|<local>/x| as? R|A|)"];
|
||||
71 [label="Exit lhs of ?:"];
|
||||
72 [label="Enter rhs of ?:"];
|
||||
73 [label="Jump: ^test_3 Unit"];
|
||||
74 [label="Stub" style="filled" fillcolor=gray];
|
||||
75 [label="Lhs of ?: is not null"];
|
||||
76 [label="Exit ?:"];
|
||||
77 [label="Variable declaration: lval a: R|A|"];
|
||||
78 [label="Access variable R|<local>/a|"];
|
||||
79 [label="Function call: R|<local>/a|.R|/A.foo|()" style="filled" fillcolor=yellow];
|
||||
80 [label="Access variable R|<local>/x|"];
|
||||
81 [label="Smart cast: R|<local>/x|"];
|
||||
82 [label="Function call: R|<local>/x|.R|/A.foo|()" style="filled" fillcolor=yellow];
|
||||
83 [label="Exit block"];
|
||||
}
|
||||
84 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
66 -> {67};
|
||||
67 -> {68};
|
||||
68 -> {69};
|
||||
|
||||
subgraph cluster_18 {
|
||||
color=red
|
||||
69 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_19 {
|
||||
color=blue
|
||||
70 [label="Enter block"];
|
||||
71 [label="Access variable R|<local>/x|"];
|
||||
72 [label="Type operator: (R|<local>/x| as? R|A|)"];
|
||||
73 [label="Exit lhs of ?:"];
|
||||
74 [label="Enter rhs of ?:"];
|
||||
75 [label="Jump: ^test_3 Unit"];
|
||||
76 [label="Stub" style="filled" fillcolor=gray];
|
||||
77 [label="Lhs of ?: is not null"];
|
||||
78 [label="Exit ?:"];
|
||||
79 [label="Variable declaration: lval a: R|A|"];
|
||||
80 [label="Access variable R|<local>/a|"];
|
||||
81 [label="Function call: R|<local>/a|.R|/A.foo|()" style="filled" fillcolor=yellow];
|
||||
82 [label="Access variable R|<local>/x|"];
|
||||
83 [label="Smart cast: R|<local>/x|"];
|
||||
84 [label="Function call: R|<local>/x|.R|/A.foo|()" style="filled" fillcolor=yellow];
|
||||
85 [label="Exit block"];
|
||||
}
|
||||
86 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
69 -> {70};
|
||||
70 -> {71};
|
||||
71 -> {72 75};
|
||||
71 -> {72};
|
||||
72 -> {73};
|
||||
73 -> {84};
|
||||
73 -> {74} [style=dotted];
|
||||
74 -> {76} [style=dotted];
|
||||
75 -> {76};
|
||||
76 -> {77};
|
||||
73 -> {74 77};
|
||||
74 -> {75};
|
||||
75 -> {86};
|
||||
75 -> {76} [style=dotted];
|
||||
76 -> {78} [style=dotted];
|
||||
77 -> {78};
|
||||
78 -> {79};
|
||||
79 -> {80};
|
||||
@@ -233,72 +238,72 @@ digraph assignSafeCall_kt {
|
||||
81 -> {82};
|
||||
82 -> {83};
|
||||
83 -> {84};
|
||||
|
||||
subgraph cluster_19 {
|
||||
color=red
|
||||
85 [label="Enter class B" style="filled" fillcolor=red];
|
||||
86 [label="Exit class B" style="filled" fillcolor=red];
|
||||
}
|
||||
85 -> {86} [color=green];
|
||||
84 -> {85};
|
||||
85 -> {86};
|
||||
|
||||
subgraph cluster_20 {
|
||||
color=red
|
||||
87 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
88 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
87 [label="Enter class B" style="filled" fillcolor=red];
|
||||
88 [label="Exit class B" style="filled" fillcolor=red];
|
||||
}
|
||||
87 -> {88};
|
||||
87 -> {88} [color=green];
|
||||
|
||||
subgraph cluster_21 {
|
||||
color=red
|
||||
89 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
90 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
89 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
90 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
89 -> {90};
|
||||
|
||||
subgraph cluster_22 {
|
||||
color=red
|
||||
91 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_23 {
|
||||
color=blue
|
||||
92 [label="Enter block"];
|
||||
93 [label="Access variable R|<local>/a|"];
|
||||
94 [label="Enter safe call"];
|
||||
95 [label="Access variable R|/B.x|"];
|
||||
96 [label="Exit safe call"];
|
||||
97 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_24 {
|
||||
color=blue
|
||||
98 [label="Enter when"];
|
||||
subgraph cluster_25 {
|
||||
color=blue
|
||||
99 [label="Enter when branch condition "];
|
||||
100 [label="Access variable R|<local>/x|"];
|
||||
101 [label="Const: Null(null)"];
|
||||
102 [label="Equality operator !="];
|
||||
103 [label="Exit when branch condition"];
|
||||
}
|
||||
104 [label="Synthetic else branch"];
|
||||
105 [label="Enter when branch result"];
|
||||
subgraph cluster_26 {
|
||||
color=blue
|
||||
106 [label="Enter block"];
|
||||
107 [label="Access variable R|<local>/a|"];
|
||||
108 [label="Smart cast: R|<local>/a|"];
|
||||
109 [label="Function call: R|<local>/a|.R|/B.bar|()" style="filled" fillcolor=yellow];
|
||||
110 [label="Exit block"];
|
||||
}
|
||||
111 [label="Exit when branch result"];
|
||||
112 [label="Exit when"];
|
||||
}
|
||||
113 [label="Exit block"];
|
||||
}
|
||||
114 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
91 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
92 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
}
|
||||
91 -> {92};
|
||||
92 -> {93};
|
||||
93 -> {94 96};
|
||||
|
||||
subgraph cluster_23 {
|
||||
color=red
|
||||
93 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_24 {
|
||||
color=blue
|
||||
94 [label="Enter block"];
|
||||
95 [label="Access variable R|<local>/a|"];
|
||||
96 [label="Enter safe call"];
|
||||
97 [label="Access variable R|/B.x|"];
|
||||
98 [label="Exit safe call"];
|
||||
99 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_25 {
|
||||
color=blue
|
||||
100 [label="Enter when"];
|
||||
subgraph cluster_26 {
|
||||
color=blue
|
||||
101 [label="Enter when branch condition "];
|
||||
102 [label="Access variable R|<local>/x|"];
|
||||
103 [label="Const: Null(null)"];
|
||||
104 [label="Equality operator !="];
|
||||
105 [label="Exit when branch condition"];
|
||||
}
|
||||
106 [label="Synthetic else branch"];
|
||||
107 [label="Enter when branch result"];
|
||||
subgraph cluster_27 {
|
||||
color=blue
|
||||
108 [label="Enter block"];
|
||||
109 [label="Access variable R|<local>/a|"];
|
||||
110 [label="Smart cast: R|<local>/a|"];
|
||||
111 [label="Function call: R|<local>/a|.R|/B.bar|()" style="filled" fillcolor=yellow];
|
||||
112 [label="Exit block"];
|
||||
}
|
||||
113 [label="Exit when branch result"];
|
||||
114 [label="Exit when"];
|
||||
}
|
||||
115 [label="Exit block"];
|
||||
}
|
||||
116 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
}
|
||||
93 -> {94};
|
||||
94 -> {95};
|
||||
95 -> {96};
|
||||
95 -> {96 98};
|
||||
96 -> {97};
|
||||
97 -> {98};
|
||||
98 -> {99};
|
||||
@@ -306,10 +311,10 @@ digraph assignSafeCall_kt {
|
||||
100 -> {101};
|
||||
101 -> {102};
|
||||
102 -> {103};
|
||||
103 -> {104 105};
|
||||
104 -> {112};
|
||||
105 -> {106};
|
||||
106 -> {107};
|
||||
103 -> {104};
|
||||
104 -> {105};
|
||||
105 -> {106 107};
|
||||
106 -> {114};
|
||||
107 -> {108};
|
||||
108 -> {109};
|
||||
109 -> {110};
|
||||
@@ -317,51 +322,51 @@ digraph assignSafeCall_kt {
|
||||
111 -> {112};
|
||||
112 -> {113};
|
||||
113 -> {114};
|
||||
114 -> {115};
|
||||
115 -> {116};
|
||||
|
||||
subgraph cluster_27 {
|
||||
subgraph cluster_28 {
|
||||
color=red
|
||||
115 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_28 {
|
||||
117 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_29 {
|
||||
color=blue
|
||||
116 [label="Enter block"];
|
||||
117 [label="Access variable R|<local>/a|"];
|
||||
118 [label="Enter safe call"];
|
||||
119 [label="Function call: $subj$.R|/B.foo|()" style="filled" fillcolor=yellow];
|
||||
120 [label="Exit safe call"];
|
||||
121 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_29 {
|
||||
118 [label="Enter block"];
|
||||
119 [label="Access variable R|<local>/a|"];
|
||||
120 [label="Enter safe call"];
|
||||
121 [label="Function call: $subj$.R|/B.foo|()" style="filled" fillcolor=yellow];
|
||||
122 [label="Exit safe call"];
|
||||
123 [label="Variable declaration: lval x: R|kotlin/Int?|"];
|
||||
subgraph cluster_30 {
|
||||
color=blue
|
||||
122 [label="Enter when"];
|
||||
subgraph cluster_30 {
|
||||
color=blue
|
||||
123 [label="Enter when branch condition "];
|
||||
124 [label="Access variable R|<local>/x|"];
|
||||
125 [label="Const: Null(null)"];
|
||||
126 [label="Equality operator !="];
|
||||
127 [label="Exit when branch condition"];
|
||||
}
|
||||
128 [label="Synthetic else branch"];
|
||||
129 [label="Enter when branch result"];
|
||||
124 [label="Enter when"];
|
||||
subgraph cluster_31 {
|
||||
color=blue
|
||||
130 [label="Enter block"];
|
||||
131 [label="Access variable R|<local>/a|"];
|
||||
132 [label="Smart cast: R|<local>/a|"];
|
||||
133 [label="Function call: R|<local>/a|.R|/B.bar|()" style="filled" fillcolor=yellow];
|
||||
134 [label="Exit block"];
|
||||
125 [label="Enter when branch condition "];
|
||||
126 [label="Access variable R|<local>/x|"];
|
||||
127 [label="Const: Null(null)"];
|
||||
128 [label="Equality operator !="];
|
||||
129 [label="Exit when branch condition"];
|
||||
}
|
||||
135 [label="Exit when branch result"];
|
||||
136 [label="Exit when"];
|
||||
130 [label="Synthetic else branch"];
|
||||
131 [label="Enter when branch result"];
|
||||
subgraph cluster_32 {
|
||||
color=blue
|
||||
132 [label="Enter block"];
|
||||
133 [label="Access variable R|<local>/a|"];
|
||||
134 [label="Smart cast: R|<local>/a|"];
|
||||
135 [label="Function call: R|<local>/a|.R|/B.bar|()" style="filled" fillcolor=yellow];
|
||||
136 [label="Exit block"];
|
||||
}
|
||||
137 [label="Exit when branch result"];
|
||||
138 [label="Exit when"];
|
||||
}
|
||||
137 [label="Exit block"];
|
||||
139 [label="Exit block"];
|
||||
}
|
||||
138 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
140 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
}
|
||||
115 -> {116};
|
||||
116 -> {117};
|
||||
117 -> {118 120};
|
||||
117 -> {118};
|
||||
118 -> {119};
|
||||
119 -> {120};
|
||||
119 -> {120 122};
|
||||
120 -> {121};
|
||||
121 -> {122};
|
||||
122 -> {123};
|
||||
@@ -369,10 +374,10 @@ digraph assignSafeCall_kt {
|
||||
124 -> {125};
|
||||
125 -> {126};
|
||||
126 -> {127};
|
||||
127 -> {128 129};
|
||||
128 -> {136};
|
||||
129 -> {130};
|
||||
130 -> {131};
|
||||
127 -> {128};
|
||||
128 -> {129};
|
||||
129 -> {130 131};
|
||||
130 -> {138};
|
||||
131 -> {132};
|
||||
132 -> {133};
|
||||
133 -> {134};
|
||||
@@ -380,42 +385,42 @@ digraph assignSafeCall_kt {
|
||||
135 -> {136};
|
||||
136 -> {137};
|
||||
137 -> {138};
|
||||
|
||||
subgraph cluster_32 {
|
||||
color=red
|
||||
139 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_33 {
|
||||
color=blue
|
||||
140 [label="Enter block"];
|
||||
141 [label="Access variable R|<local>/x|"];
|
||||
142 [label="Type operator: (R|<local>/x| as? R|B|)"];
|
||||
143 [label="Exit lhs of ?:"];
|
||||
144 [label="Enter rhs of ?:"];
|
||||
145 [label="Jump: ^test_3 Unit"];
|
||||
146 [label="Stub" style="filled" fillcolor=gray];
|
||||
147 [label="Lhs of ?: is not null"];
|
||||
148 [label="Exit ?:"];
|
||||
149 [label="Variable declaration: lval a: R|B|"];
|
||||
150 [label="Access variable R|<local>/a|"];
|
||||
151 [label="Function call: R|<local>/a|.R|/B.foo|()" style="filled" fillcolor=yellow];
|
||||
152 [label="Access variable R|<local>/x|"];
|
||||
153 [label="Smart cast: R|<local>/x|"];
|
||||
154 [label="Function call: R|<local>/x|.R|/B.foo|()" style="filled" fillcolor=yellow];
|
||||
155 [label="Exit block"];
|
||||
}
|
||||
156 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
138 -> {139};
|
||||
139 -> {140};
|
||||
140 -> {141};
|
||||
|
||||
subgraph cluster_33 {
|
||||
color=red
|
||||
141 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_34 {
|
||||
color=blue
|
||||
142 [label="Enter block"];
|
||||
143 [label="Access variable R|<local>/x|"];
|
||||
144 [label="Type operator: (R|<local>/x| as? R|B|)"];
|
||||
145 [label="Exit lhs of ?:"];
|
||||
146 [label="Enter rhs of ?:"];
|
||||
147 [label="Jump: ^test_3 Unit"];
|
||||
148 [label="Stub" style="filled" fillcolor=gray];
|
||||
149 [label="Lhs of ?: is not null"];
|
||||
150 [label="Exit ?:"];
|
||||
151 [label="Variable declaration: lval a: R|B|"];
|
||||
152 [label="Access variable R|<local>/a|"];
|
||||
153 [label="Function call: R|<local>/a|.R|/B.foo|()" style="filled" fillcolor=yellow];
|
||||
154 [label="Access variable R|<local>/x|"];
|
||||
155 [label="Smart cast: R|<local>/x|"];
|
||||
156 [label="Function call: R|<local>/x|.R|/B.foo|()" style="filled" fillcolor=yellow];
|
||||
157 [label="Exit block"];
|
||||
}
|
||||
158 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
141 -> {142};
|
||||
142 -> {143};
|
||||
143 -> {144 147};
|
||||
143 -> {144};
|
||||
144 -> {145};
|
||||
145 -> {156};
|
||||
145 -> {146} [style=dotted];
|
||||
146 -> {148} [style=dotted];
|
||||
147 -> {148};
|
||||
148 -> {149};
|
||||
145 -> {146 149};
|
||||
146 -> {147};
|
||||
147 -> {158};
|
||||
147 -> {148} [style=dotted];
|
||||
148 -> {150} [style=dotted];
|
||||
149 -> {150};
|
||||
150 -> {151};
|
||||
151 -> {152};
|
||||
@@ -423,5 +428,7 @@ digraph assignSafeCall_kt {
|
||||
153 -> {154};
|
||||
154 -> {155};
|
||||
155 -> {156};
|
||||
156 -> {157};
|
||||
157 -> {158};
|
||||
|
||||
}
|
||||
|
||||
Vendored
+192
-185
@@ -5,96 +5,101 @@ digraph safeCallAndEqualityToBool_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
0 [label="Enter function check" style="filled" fillcolor=red];
|
||||
subgraph cluster_1 {
|
||||
color=blue
|
||||
1 [label="Enter block"];
|
||||
2 [label="Const: Boolean(true)"];
|
||||
3 [label="Jump: ^check Boolean(true)"];
|
||||
4 [label="Stub" style="filled" fillcolor=gray];
|
||||
5 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
6 [label="Exit function check" style="filled" fillcolor=red];
|
||||
0 [label="Enter file safeCallAndEqualityToBool.kt" style="filled" fillcolor=red];
|
||||
1 [label="Exit file safeCallAndEqualityToBool.kt" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1};
|
||||
1 -> {2};
|
||||
2 -> {3};
|
||||
3 -> {6};
|
||||
3 -> {4} [style=dotted];
|
||||
4 -> {5} [style=dotted];
|
||||
5 -> {6} [style=dotted];
|
||||
0 -> {1} [color=green];
|
||||
|
||||
subgraph cluster_2 {
|
||||
subgraph cluster_1 {
|
||||
color=red
|
||||
7 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_3 {
|
||||
2 [label="Enter function check" style="filled" fillcolor=red];
|
||||
subgraph cluster_2 {
|
||||
color=blue
|
||||
8 [label="Enter block"];
|
||||
subgraph cluster_4 {
|
||||
3 [label="Enter block"];
|
||||
4 [label="Const: Boolean(true)"];
|
||||
5 [label="Jump: ^check Boolean(true)"];
|
||||
6 [label="Stub" style="filled" fillcolor=gray];
|
||||
7 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
8 [label="Exit function check" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3};
|
||||
3 -> {4};
|
||||
4 -> {5};
|
||||
5 -> {8};
|
||||
5 -> {6} [style=dotted];
|
||||
6 -> {7} [style=dotted];
|
||||
7 -> {8} [style=dotted];
|
||||
|
||||
subgraph cluster_3 {
|
||||
color=red
|
||||
9 [label="Enter function test_1" style="filled" fillcolor=red];
|
||||
subgraph cluster_4 {
|
||||
color=blue
|
||||
10 [label="Enter block"];
|
||||
subgraph cluster_5 {
|
||||
color=blue
|
||||
9 [label="Enter when"];
|
||||
subgraph cluster_5 {
|
||||
color=blue
|
||||
10 [label="Enter when branch condition "];
|
||||
11 [label="Access variable R|<local>/s|"];
|
||||
12 [label="Enter safe call"];
|
||||
13 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
14 [label="Exit safe call"];
|
||||
15 [label="Const: Boolean(true)"];
|
||||
16 [label="Equality operator =="];
|
||||
17 [label="Exit when branch condition"];
|
||||
}
|
||||
11 [label="Enter when"];
|
||||
subgraph cluster_6 {
|
||||
color=blue
|
||||
18 [label="Enter when branch condition else"];
|
||||
12 [label="Enter when branch condition "];
|
||||
13 [label="Access variable R|<local>/s|"];
|
||||
14 [label="Enter safe call"];
|
||||
15 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
16 [label="Exit safe call"];
|
||||
17 [label="Const: Boolean(true)"];
|
||||
18 [label="Equality operator =="];
|
||||
19 [label="Exit when branch condition"];
|
||||
}
|
||||
20 [label="Enter when branch result"];
|
||||
subgraph cluster_7 {
|
||||
color=blue
|
||||
21 [label="Enter block"];
|
||||
22 [label="Access variable R|<local>/s|"];
|
||||
23 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
24 [label="Exit block"];
|
||||
20 [label="Enter when branch condition else"];
|
||||
21 [label="Exit when branch condition"];
|
||||
}
|
||||
25 [label="Exit when branch result"];
|
||||
26 [label="Enter when branch result"];
|
||||
22 [label="Enter when branch result"];
|
||||
subgraph cluster_8 {
|
||||
color=blue
|
||||
27 [label="Enter block"];
|
||||
28 [label="Access variable R|<local>/s|"];
|
||||
29 [label="Smart cast: R|<local>/s|"];
|
||||
30 [label="Access variable R|kotlin/String.length|"];
|
||||
31 [label="Exit block"];
|
||||
23 [label="Enter block"];
|
||||
24 [label="Access variable R|<local>/s|"];
|
||||
25 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
26 [label="Exit block"];
|
||||
}
|
||||
32 [label="Exit when branch result"];
|
||||
33 [label="Exit when"];
|
||||
27 [label="Exit when branch result"];
|
||||
28 [label="Enter when branch result"];
|
||||
subgraph cluster_9 {
|
||||
color=blue
|
||||
29 [label="Enter block"];
|
||||
30 [label="Access variable R|<local>/s|"];
|
||||
31 [label="Smart cast: R|<local>/s|"];
|
||||
32 [label="Access variable R|kotlin/String.length|"];
|
||||
33 [label="Exit block"];
|
||||
}
|
||||
34 [label="Exit when branch result"];
|
||||
35 [label="Exit when"];
|
||||
}
|
||||
34 [label="Exit block"];
|
||||
36 [label="Exit block"];
|
||||
}
|
||||
35 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
37 [label="Exit function test_1" style="filled" fillcolor=red];
|
||||
}
|
||||
7 -> {8};
|
||||
8 -> {9};
|
||||
9 -> {10};
|
||||
10 -> {11};
|
||||
11 -> {12 14};
|
||||
11 -> {12};
|
||||
12 -> {13};
|
||||
13 -> {14};
|
||||
13 -> {14 16};
|
||||
14 -> {15};
|
||||
15 -> {16};
|
||||
16 -> {17};
|
||||
17 -> {18 26};
|
||||
17 -> {18};
|
||||
18 -> {19};
|
||||
19 -> {20};
|
||||
19 -> {20 28};
|
||||
20 -> {21};
|
||||
21 -> {22};
|
||||
22 -> {23};
|
||||
23 -> {24};
|
||||
24 -> {25};
|
||||
25 -> {33};
|
||||
25 -> {26};
|
||||
26 -> {27};
|
||||
27 -> {28};
|
||||
27 -> {35};
|
||||
28 -> {29};
|
||||
29 -> {30};
|
||||
30 -> {31};
|
||||
@@ -102,78 +107,78 @@ digraph safeCallAndEqualityToBool_kt {
|
||||
32 -> {33};
|
||||
33 -> {34};
|
||||
34 -> {35};
|
||||
35 -> {36};
|
||||
36 -> {37};
|
||||
|
||||
subgraph cluster_9 {
|
||||
subgraph cluster_10 {
|
||||
color=red
|
||||
36 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_10 {
|
||||
38 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_11 {
|
||||
color=blue
|
||||
37 [label="Enter block"];
|
||||
subgraph cluster_11 {
|
||||
39 [label="Enter block"];
|
||||
subgraph cluster_12 {
|
||||
color=blue
|
||||
38 [label="Enter when"];
|
||||
subgraph cluster_12 {
|
||||
color=blue
|
||||
39 [label="Enter when branch condition "];
|
||||
40 [label="Access variable R|<local>/s|"];
|
||||
41 [label="Enter safe call"];
|
||||
42 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
43 [label="Exit safe call"];
|
||||
44 [label="Const: Boolean(false)"];
|
||||
45 [label="Equality operator =="];
|
||||
46 [label="Exit when branch condition"];
|
||||
}
|
||||
40 [label="Enter when"];
|
||||
subgraph cluster_13 {
|
||||
color=blue
|
||||
47 [label="Enter when branch condition else"];
|
||||
41 [label="Enter when branch condition "];
|
||||
42 [label="Access variable R|<local>/s|"];
|
||||
43 [label="Enter safe call"];
|
||||
44 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
45 [label="Exit safe call"];
|
||||
46 [label="Const: Boolean(false)"];
|
||||
47 [label="Equality operator =="];
|
||||
48 [label="Exit when branch condition"];
|
||||
}
|
||||
49 [label="Enter when branch result"];
|
||||
subgraph cluster_14 {
|
||||
color=blue
|
||||
50 [label="Enter block"];
|
||||
51 [label="Access variable R|<local>/s|"];
|
||||
52 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
53 [label="Exit block"];
|
||||
49 [label="Enter when branch condition else"];
|
||||
50 [label="Exit when branch condition"];
|
||||
}
|
||||
54 [label="Exit when branch result"];
|
||||
55 [label="Enter when branch result"];
|
||||
51 [label="Enter when branch result"];
|
||||
subgraph cluster_15 {
|
||||
color=blue
|
||||
56 [label="Enter block"];
|
||||
57 [label="Access variable R|<local>/s|"];
|
||||
58 [label="Smart cast: R|<local>/s|"];
|
||||
59 [label="Access variable R|kotlin/String.length|"];
|
||||
60 [label="Exit block"];
|
||||
52 [label="Enter block"];
|
||||
53 [label="Access variable R|<local>/s|"];
|
||||
54 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
55 [label="Exit block"];
|
||||
}
|
||||
61 [label="Exit when branch result"];
|
||||
62 [label="Exit when"];
|
||||
56 [label="Exit when branch result"];
|
||||
57 [label="Enter when branch result"];
|
||||
subgraph cluster_16 {
|
||||
color=blue
|
||||
58 [label="Enter block"];
|
||||
59 [label="Access variable R|<local>/s|"];
|
||||
60 [label="Smart cast: R|<local>/s|"];
|
||||
61 [label="Access variable R|kotlin/String.length|"];
|
||||
62 [label="Exit block"];
|
||||
}
|
||||
63 [label="Exit when branch result"];
|
||||
64 [label="Exit when"];
|
||||
}
|
||||
63 [label="Exit block"];
|
||||
65 [label="Exit block"];
|
||||
}
|
||||
64 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
66 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
}
|
||||
36 -> {37};
|
||||
37 -> {38};
|
||||
38 -> {39};
|
||||
39 -> {40};
|
||||
40 -> {41 43};
|
||||
40 -> {41};
|
||||
41 -> {42};
|
||||
42 -> {43};
|
||||
42 -> {43 45};
|
||||
43 -> {44};
|
||||
44 -> {45};
|
||||
45 -> {46};
|
||||
46 -> {47 55};
|
||||
46 -> {47};
|
||||
47 -> {48};
|
||||
48 -> {49};
|
||||
48 -> {49 57};
|
||||
49 -> {50};
|
||||
50 -> {51};
|
||||
51 -> {52};
|
||||
52 -> {53};
|
||||
53 -> {54};
|
||||
54 -> {62};
|
||||
54 -> {55};
|
||||
55 -> {56};
|
||||
56 -> {57};
|
||||
56 -> {64};
|
||||
57 -> {58};
|
||||
58 -> {59};
|
||||
59 -> {60};
|
||||
@@ -181,163 +186,165 @@ digraph safeCallAndEqualityToBool_kt {
|
||||
61 -> {62};
|
||||
62 -> {63};
|
||||
63 -> {64};
|
||||
64 -> {65};
|
||||
65 -> {66};
|
||||
|
||||
subgraph cluster_16 {
|
||||
subgraph cluster_17 {
|
||||
color=red
|
||||
65 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_17 {
|
||||
67 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_18 {
|
||||
color=blue
|
||||
66 [label="Enter block"];
|
||||
subgraph cluster_18 {
|
||||
68 [label="Enter block"];
|
||||
subgraph cluster_19 {
|
||||
color=blue
|
||||
67 [label="Enter when"];
|
||||
subgraph cluster_19 {
|
||||
color=blue
|
||||
68 [label="Enter when branch condition "];
|
||||
69 [label="Access variable R|<local>/s|"];
|
||||
70 [label="Enter safe call"];
|
||||
71 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
72 [label="Exit safe call"];
|
||||
73 [label="Const: Boolean(true)"];
|
||||
74 [label="Equality operator !="];
|
||||
75 [label="Exit when branch condition"];
|
||||
}
|
||||
69 [label="Enter when"];
|
||||
subgraph cluster_20 {
|
||||
color=blue
|
||||
76 [label="Enter when branch condition else"];
|
||||
70 [label="Enter when branch condition "];
|
||||
71 [label="Access variable R|<local>/s|"];
|
||||
72 [label="Enter safe call"];
|
||||
73 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
74 [label="Exit safe call"];
|
||||
75 [label="Const: Boolean(true)"];
|
||||
76 [label="Equality operator !="];
|
||||
77 [label="Exit when branch condition"];
|
||||
}
|
||||
78 [label="Enter when branch result"];
|
||||
subgraph cluster_21 {
|
||||
color=blue
|
||||
79 [label="Enter block"];
|
||||
80 [label="Access variable R|<local>/s|"];
|
||||
81 [label="Smart cast: R|<local>/s|"];
|
||||
82 [label="Access variable R|kotlin/String.length|"];
|
||||
83 [label="Exit block"];
|
||||
78 [label="Enter when branch condition else"];
|
||||
79 [label="Exit when branch condition"];
|
||||
}
|
||||
84 [label="Exit when branch result"];
|
||||
85 [label="Enter when branch result"];
|
||||
80 [label="Enter when branch result"];
|
||||
subgraph cluster_22 {
|
||||
color=blue
|
||||
86 [label="Enter block"];
|
||||
87 [label="Access variable R|<local>/s|"];
|
||||
88 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
89 [label="Exit block"];
|
||||
81 [label="Enter block"];
|
||||
82 [label="Access variable R|<local>/s|"];
|
||||
83 [label="Smart cast: R|<local>/s|"];
|
||||
84 [label="Access variable R|kotlin/String.length|"];
|
||||
85 [label="Exit block"];
|
||||
}
|
||||
90 [label="Exit when branch result"];
|
||||
91 [label="Exit when"];
|
||||
86 [label="Exit when branch result"];
|
||||
87 [label="Enter when branch result"];
|
||||
subgraph cluster_23 {
|
||||
color=blue
|
||||
88 [label="Enter block"];
|
||||
89 [label="Access variable R|<local>/s|"];
|
||||
90 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
91 [label="Exit block"];
|
||||
}
|
||||
92 [label="Exit when branch result"];
|
||||
93 [label="Exit when"];
|
||||
}
|
||||
92 [label="Exit block"];
|
||||
94 [label="Exit block"];
|
||||
}
|
||||
93 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
95 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
65 -> {66};
|
||||
66 -> {67};
|
||||
67 -> {68};
|
||||
68 -> {69};
|
||||
69 -> {70 72};
|
||||
69 -> {70};
|
||||
70 -> {71};
|
||||
71 -> {72};
|
||||
71 -> {72 74};
|
||||
72 -> {73};
|
||||
73 -> {74};
|
||||
74 -> {75};
|
||||
75 -> {76 85};
|
||||
75 -> {76};
|
||||
76 -> {77};
|
||||
77 -> {78};
|
||||
77 -> {78 87};
|
||||
78 -> {79};
|
||||
79 -> {80};
|
||||
80 -> {81};
|
||||
81 -> {82};
|
||||
82 -> {83};
|
||||
83 -> {84};
|
||||
84 -> {91};
|
||||
84 -> {85};
|
||||
85 -> {86};
|
||||
86 -> {87};
|
||||
86 -> {93};
|
||||
87 -> {88};
|
||||
88 -> {89};
|
||||
89 -> {90};
|
||||
90 -> {91};
|
||||
91 -> {92};
|
||||
92 -> {93};
|
||||
93 -> {94};
|
||||
94 -> {95};
|
||||
|
||||
subgraph cluster_23 {
|
||||
subgraph cluster_24 {
|
||||
color=red
|
||||
94 [label="Enter function test_4" style="filled" fillcolor=red];
|
||||
subgraph cluster_24 {
|
||||
96 [label="Enter function test_4" style="filled" fillcolor=red];
|
||||
subgraph cluster_25 {
|
||||
color=blue
|
||||
95 [label="Enter block"];
|
||||
subgraph cluster_25 {
|
||||
97 [label="Enter block"];
|
||||
subgraph cluster_26 {
|
||||
color=blue
|
||||
96 [label="Enter when"];
|
||||
subgraph cluster_26 {
|
||||
color=blue
|
||||
97 [label="Enter when branch condition "];
|
||||
98 [label="Access variable R|<local>/s|"];
|
||||
99 [label="Enter safe call"];
|
||||
100 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
101 [label="Exit safe call"];
|
||||
102 [label="Const: Boolean(false)"];
|
||||
103 [label="Equality operator !="];
|
||||
104 [label="Exit when branch condition"];
|
||||
}
|
||||
98 [label="Enter when"];
|
||||
subgraph cluster_27 {
|
||||
color=blue
|
||||
105 [label="Enter when branch condition else"];
|
||||
99 [label="Enter when branch condition "];
|
||||
100 [label="Access variable R|<local>/s|"];
|
||||
101 [label="Enter safe call"];
|
||||
102 [label="Function call: $subj$.R|/check|()" style="filled" fillcolor=yellow];
|
||||
103 [label="Exit safe call"];
|
||||
104 [label="Const: Boolean(false)"];
|
||||
105 [label="Equality operator !="];
|
||||
106 [label="Exit when branch condition"];
|
||||
}
|
||||
107 [label="Enter when branch result"];
|
||||
subgraph cluster_28 {
|
||||
color=blue
|
||||
108 [label="Enter block"];
|
||||
109 [label="Access variable R|<local>/s|"];
|
||||
110 [label="Smart cast: R|<local>/s|"];
|
||||
111 [label="Access variable R|kotlin/String.length|"];
|
||||
112 [label="Exit block"];
|
||||
107 [label="Enter when branch condition else"];
|
||||
108 [label="Exit when branch condition"];
|
||||
}
|
||||
113 [label="Exit when branch result"];
|
||||
114 [label="Enter when branch result"];
|
||||
109 [label="Enter when branch result"];
|
||||
subgraph cluster_29 {
|
||||
color=blue
|
||||
115 [label="Enter block"];
|
||||
116 [label="Access variable R|<local>/s|"];
|
||||
117 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
118 [label="Exit block"];
|
||||
110 [label="Enter block"];
|
||||
111 [label="Access variable R|<local>/s|"];
|
||||
112 [label="Smart cast: R|<local>/s|"];
|
||||
113 [label="Access variable R|kotlin/String.length|"];
|
||||
114 [label="Exit block"];
|
||||
}
|
||||
119 [label="Exit when branch result"];
|
||||
120 [label="Exit when"];
|
||||
115 [label="Exit when branch result"];
|
||||
116 [label="Enter when branch result"];
|
||||
subgraph cluster_30 {
|
||||
color=blue
|
||||
117 [label="Enter block"];
|
||||
118 [label="Access variable R|<local>/s|"];
|
||||
119 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
120 [label="Exit block"];
|
||||
}
|
||||
121 [label="Exit when branch result"];
|
||||
122 [label="Exit when"];
|
||||
}
|
||||
121 [label="Exit block"];
|
||||
123 [label="Exit block"];
|
||||
}
|
||||
122 [label="Exit function test_4" style="filled" fillcolor=red];
|
||||
124 [label="Exit function test_4" style="filled" fillcolor=red];
|
||||
}
|
||||
94 -> {95};
|
||||
95 -> {96};
|
||||
96 -> {97};
|
||||
97 -> {98};
|
||||
98 -> {99 101};
|
||||
98 -> {99};
|
||||
99 -> {100};
|
||||
100 -> {101};
|
||||
100 -> {101 103};
|
||||
101 -> {102};
|
||||
102 -> {103};
|
||||
103 -> {104};
|
||||
104 -> {105 114};
|
||||
104 -> {105};
|
||||
105 -> {106};
|
||||
106 -> {107};
|
||||
106 -> {107 116};
|
||||
107 -> {108};
|
||||
108 -> {109};
|
||||
109 -> {110};
|
||||
110 -> {111};
|
||||
111 -> {112};
|
||||
112 -> {113};
|
||||
113 -> {120};
|
||||
113 -> {114};
|
||||
114 -> {115};
|
||||
115 -> {116};
|
||||
115 -> {122};
|
||||
116 -> {117};
|
||||
117 -> {118};
|
||||
118 -> {119};
|
||||
119 -> {120};
|
||||
120 -> {121};
|
||||
121 -> {122};
|
||||
122 -> {123};
|
||||
123 -> {124};
|
||||
|
||||
}
|
||||
|
||||
+225
-218
@@ -5,65 +5,70 @@ digraph safeCalls_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
0 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
subgraph cluster_1 {
|
||||
color=blue
|
||||
1 [label="Enter block"];
|
||||
2 [label="Const: String()"];
|
||||
3 [label="Jump: ^foo String()"];
|
||||
4 [label="Stub" style="filled" fillcolor=gray];
|
||||
5 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
6 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
0 [label="Enter file safeCalls.kt" style="filled" fillcolor=red];
|
||||
1 [label="Exit file safeCalls.kt" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1} [color=green];
|
||||
|
||||
subgraph cluster_1 {
|
||||
color=red
|
||||
2 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
subgraph cluster_2 {
|
||||
color=blue
|
||||
3 [label="Enter block"];
|
||||
4 [label="Const: String()"];
|
||||
5 [label="Jump: ^foo String()"];
|
||||
6 [label="Stub" style="filled" fillcolor=gray];
|
||||
7 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
8 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1};
|
||||
1 -> {2};
|
||||
2 -> {3};
|
||||
3 -> {6};
|
||||
3 -> {4} [style=dotted];
|
||||
4 -> {5} [style=dotted];
|
||||
3 -> {4};
|
||||
4 -> {5};
|
||||
5 -> {8};
|
||||
5 -> {6} [style=dotted];
|
||||
6 -> {7} [style=dotted];
|
||||
7 -> {8} [style=dotted];
|
||||
|
||||
subgraph cluster_2 {
|
||||
subgraph cluster_3 {
|
||||
color=red
|
||||
7 [label="Enter function let" style="filled" fillcolor=red];
|
||||
subgraph cluster_3 {
|
||||
9 [label="Enter function let" style="filled" fillcolor=red];
|
||||
subgraph cluster_4 {
|
||||
color=blue
|
||||
8 [label="Enter block"];
|
||||
9 [label="Exit block"];
|
||||
10 [label="Enter block"];
|
||||
11 [label="Exit block"];
|
||||
}
|
||||
10 [label="Exit function let" style="filled" fillcolor=red];
|
||||
12 [label="Exit function let" style="filled" fillcolor=red];
|
||||
}
|
||||
7 -> {8};
|
||||
8 -> {9};
|
||||
9 -> {10};
|
||||
|
||||
subgraph cluster_4 {
|
||||
color=red
|
||||
11 [label="Enter function test" style="filled" fillcolor=red];
|
||||
subgraph cluster_5 {
|
||||
color=blue
|
||||
12 [label="Enter block"];
|
||||
13 [label="Access variable R|<local>/x|"];
|
||||
14 [label="Enter safe call"];
|
||||
15 [label="Access variable R|<local>/x|"];
|
||||
16 [label="Smart cast: R|<local>/x|"];
|
||||
17 [label="Access variable R|kotlin/String.length|"];
|
||||
18 [label="Const: Int(1)"];
|
||||
19 [label="Equality operator =="];
|
||||
20 [label="Function call: $subj$.R|/foo|(...)" style="filled" fillcolor=yellow];
|
||||
21 [label="Exit safe call"];
|
||||
22 [label="Access variable R|<local>/x|"];
|
||||
23 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
24 [label="Exit block"];
|
||||
}
|
||||
25 [label="Exit function test" style="filled" fillcolor=red];
|
||||
}
|
||||
10 -> {11};
|
||||
11 -> {12};
|
||||
12 -> {13};
|
||||
13 -> {14 21};
|
||||
|
||||
subgraph cluster_5 {
|
||||
color=red
|
||||
13 [label="Enter function test" style="filled" fillcolor=red];
|
||||
subgraph cluster_6 {
|
||||
color=blue
|
||||
14 [label="Enter block"];
|
||||
15 [label="Access variable R|<local>/x|"];
|
||||
16 [label="Enter safe call"];
|
||||
17 [label="Access variable R|<local>/x|"];
|
||||
18 [label="Smart cast: R|<local>/x|"];
|
||||
19 [label="Access variable R|kotlin/String.length|"];
|
||||
20 [label="Const: Int(1)"];
|
||||
21 [label="Equality operator =="];
|
||||
22 [label="Function call: $subj$.R|/foo|(...)" style="filled" fillcolor=yellow];
|
||||
23 [label="Exit safe call"];
|
||||
24 [label="Access variable R|<local>/x|"];
|
||||
25 [label="Access variable R|kotlin/String.length<Inapplicable(UNSAFE_CALL): kotlin/String.length>#|"];
|
||||
26 [label="Exit block"];
|
||||
}
|
||||
27 [label="Exit function test" style="filled" fillcolor=red];
|
||||
}
|
||||
13 -> {14};
|
||||
14 -> {15};
|
||||
15 -> {16};
|
||||
15 -> {16 23};
|
||||
16 -> {17};
|
||||
17 -> {18};
|
||||
18 -> {19};
|
||||
@@ -73,246 +78,248 @@ digraph safeCalls_kt {
|
||||
22 -> {23};
|
||||
23 -> {24};
|
||||
24 -> {25};
|
||||
|
||||
subgraph cluster_6 {
|
||||
color=red
|
||||
26 [label="Enter class A" style="filled" fillcolor=red];
|
||||
27 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
26 -> {27} [color=green];
|
||||
25 -> {26};
|
||||
26 -> {27};
|
||||
|
||||
subgraph cluster_7 {
|
||||
color=red
|
||||
28 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
29 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
28 [label="Enter class A" style="filled" fillcolor=red];
|
||||
29 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
28 -> {29};
|
||||
28 -> {29} [color=green];
|
||||
|
||||
subgraph cluster_8 {
|
||||
color=red
|
||||
30 [label="Enter function bool" style="filled" fillcolor=red];
|
||||
31 [label="Exit function bool" style="filled" fillcolor=red];
|
||||
30 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
31 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
}
|
||||
30 -> {31};
|
||||
|
||||
subgraph cluster_9 {
|
||||
color=red
|
||||
32 [label="Enter function id" style="filled" fillcolor=red];
|
||||
33 [label="Exit function id" style="filled" fillcolor=red];
|
||||
32 [label="Enter function bool" style="filled" fillcolor=red];
|
||||
33 [label="Exit function bool" style="filled" fillcolor=red];
|
||||
}
|
||||
32 -> {33};
|
||||
|
||||
subgraph cluster_10 {
|
||||
color=red
|
||||
34 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_11 {
|
||||
color=blue
|
||||
35 [label="Enter block"];
|
||||
36 [label="Access variable R|<local>/x|"];
|
||||
37 [label="Type operator: (R|<local>/x| as? R|A|)"];
|
||||
38 [label="Enter safe call"];
|
||||
39 [label="Access variable R|<local>/x|"];
|
||||
40 [label="Smart cast: R|<local>/x|"];
|
||||
41 [label="Function call: $subj$.R|/A.bar|(...)" style="filled" fillcolor=yellow];
|
||||
42 [label="Exit safe call"];
|
||||
43 [label="Exit block"];
|
||||
}
|
||||
44 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
34 [label="Enter function id" style="filled" fillcolor=red];
|
||||
35 [label="Exit function id" style="filled" fillcolor=red];
|
||||
}
|
||||
34 -> {35};
|
||||
35 -> {36};
|
||||
|
||||
subgraph cluster_11 {
|
||||
color=red
|
||||
36 [label="Enter function test_2" style="filled" fillcolor=red];
|
||||
subgraph cluster_12 {
|
||||
color=blue
|
||||
37 [label="Enter block"];
|
||||
38 [label="Access variable R|<local>/x|"];
|
||||
39 [label="Type operator: (R|<local>/x| as? R|A|)"];
|
||||
40 [label="Enter safe call"];
|
||||
41 [label="Access variable R|<local>/x|"];
|
||||
42 [label="Smart cast: R|<local>/x|"];
|
||||
43 [label="Function call: $subj$.R|/A.bar|(...)" style="filled" fillcolor=yellow];
|
||||
44 [label="Exit safe call"];
|
||||
45 [label="Exit block"];
|
||||
}
|
||||
46 [label="Exit function test_2" style="filled" fillcolor=red];
|
||||
}
|
||||
36 -> {37};
|
||||
37 -> {38 42};
|
||||
37 -> {38};
|
||||
38 -> {39};
|
||||
39 -> {40};
|
||||
39 -> {40 44};
|
||||
40 -> {41};
|
||||
41 -> {42};
|
||||
42 -> {43};
|
||||
43 -> {44};
|
||||
|
||||
subgraph cluster_12 {
|
||||
color=red
|
||||
45 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_13 {
|
||||
color=blue
|
||||
46 [label="Enter block"];
|
||||
47 [label="Access variable R|<local>/x|"];
|
||||
48 [label="Type operator: (R|<local>/x| as? R|A|)"];
|
||||
49 [label="Enter safe call"];
|
||||
50 [label="Access variable R|<local>/x|"];
|
||||
51 [label="Smart cast: R|<local>/x|"];
|
||||
52 [label="Function call: $subj$.R|/A.bar|(...)" style="filled" fillcolor=yellow];
|
||||
53 [label="Enter safe call"];
|
||||
54 [label="Access variable R|<local>/x|"];
|
||||
55 [label="Smart cast: R|<local>/x|"];
|
||||
56 [label="Function call: R|<local>/x|.R|/A.bool|()" style="filled" fillcolor=yellow];
|
||||
57 [label="Function call: $subj$.R|/foo|(...)" style="filled" fillcolor=yellow];
|
||||
58 [label="Enter safe call"];
|
||||
59 [label="Postponed enter to lambda"];
|
||||
subgraph cluster_14 {
|
||||
color=blue
|
||||
60 [label="Enter function <anonymous>" style="filled" fillcolor=red];
|
||||
subgraph cluster_15 {
|
||||
color=blue
|
||||
61 [label="Enter block"];
|
||||
62 [label="Access variable R|<local>/x|"];
|
||||
63 [label="Smart cast: R|<local>/x|"];
|
||||
64 [label="Function call: R|<local>/x|.R|/A.bool|()" style="filled" fillcolor=yellow];
|
||||
65 [label="Exit block"];
|
||||
}
|
||||
66 [label="Exit function <anonymous>" style="filled" fillcolor=red];
|
||||
}
|
||||
67 [label="Postponed exit from lambda"];
|
||||
68 [label="Function call: $subj$.R|/let|(...)" style="filled" fillcolor=yellow];
|
||||
69 [label="Exit safe call"];
|
||||
70 [label="Exit safe call"];
|
||||
71 [label="Exit safe call"];
|
||||
72 [label="Access variable R|<local>/x|"];
|
||||
73 [label="Function call: R|<local>/x|.<Unresolved name: bool>#()" style="filled" fillcolor=yellow];
|
||||
74 [label="Exit block"];
|
||||
}
|
||||
75 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
44 -> {45};
|
||||
45 -> {46};
|
||||
46 -> {47};
|
||||
|
||||
subgraph cluster_13 {
|
||||
color=red
|
||||
47 [label="Enter function test_3" style="filled" fillcolor=red];
|
||||
subgraph cluster_14 {
|
||||
color=blue
|
||||
48 [label="Enter block"];
|
||||
49 [label="Access variable R|<local>/x|"];
|
||||
50 [label="Type operator: (R|<local>/x| as? R|A|)"];
|
||||
51 [label="Enter safe call"];
|
||||
52 [label="Access variable R|<local>/x|"];
|
||||
53 [label="Smart cast: R|<local>/x|"];
|
||||
54 [label="Function call: $subj$.R|/A.bar|(...)" style="filled" fillcolor=yellow];
|
||||
55 [label="Enter safe call"];
|
||||
56 [label="Access variable R|<local>/x|"];
|
||||
57 [label="Smart cast: R|<local>/x|"];
|
||||
58 [label="Function call: R|<local>/x|.R|/A.bool|()" style="filled" fillcolor=yellow];
|
||||
59 [label="Function call: $subj$.R|/foo|(...)" style="filled" fillcolor=yellow];
|
||||
60 [label="Enter safe call"];
|
||||
61 [label="Postponed enter to lambda"];
|
||||
subgraph cluster_15 {
|
||||
color=blue
|
||||
62 [label="Enter function <anonymous>" style="filled" fillcolor=red];
|
||||
subgraph cluster_16 {
|
||||
color=blue
|
||||
63 [label="Enter block"];
|
||||
64 [label="Access variable R|<local>/x|"];
|
||||
65 [label="Smart cast: R|<local>/x|"];
|
||||
66 [label="Function call: R|<local>/x|.R|/A.bool|()" style="filled" fillcolor=yellow];
|
||||
67 [label="Exit block"];
|
||||
}
|
||||
68 [label="Exit function <anonymous>" style="filled" fillcolor=red];
|
||||
}
|
||||
69 [label="Postponed exit from lambda"];
|
||||
70 [label="Function call: $subj$.R|/let|(...)" style="filled" fillcolor=yellow];
|
||||
71 [label="Exit safe call"];
|
||||
72 [label="Exit safe call"];
|
||||
73 [label="Exit safe call"];
|
||||
74 [label="Access variable R|<local>/x|"];
|
||||
75 [label="Function call: R|<local>/x|.<Unresolved name: bool>#()" style="filled" fillcolor=yellow];
|
||||
76 [label="Exit block"];
|
||||
}
|
||||
77 [label="Exit function test_3" style="filled" fillcolor=red];
|
||||
}
|
||||
47 -> {48};
|
||||
48 -> {49 69};
|
||||
48 -> {49};
|
||||
49 -> {50};
|
||||
50 -> {51};
|
||||
50 -> {51 71};
|
||||
51 -> {52};
|
||||
52 -> {53 69};
|
||||
52 -> {53};
|
||||
53 -> {54};
|
||||
54 -> {55};
|
||||
54 -> {55 71};
|
||||
55 -> {56};
|
||||
56 -> {57};
|
||||
57 -> {58 70};
|
||||
57 -> {58};
|
||||
58 -> {59};
|
||||
59 -> {60 67 68};
|
||||
59 -> {60} [style=dashed];
|
||||
59 -> {60 72};
|
||||
60 -> {61};
|
||||
61 -> {62};
|
||||
61 -> {62 69 70};
|
||||
61 -> {62} [style=dashed];
|
||||
62 -> {63};
|
||||
63 -> {64};
|
||||
64 -> {65};
|
||||
65 -> {66};
|
||||
66 -> {67};
|
||||
67 -> {68};
|
||||
68 -> {71};
|
||||
69 -> {70};
|
||||
70 -> {71};
|
||||
70 -> {73};
|
||||
71 -> {72};
|
||||
72 -> {73};
|
||||
73 -> {74};
|
||||
74 -> {75};
|
||||
|
||||
subgraph cluster_16 {
|
||||
color=red
|
||||
76 [label="Enter function test_4" style="filled" fillcolor=red];
|
||||
subgraph cluster_17 {
|
||||
color=blue
|
||||
77 [label="Enter block"];
|
||||
78 [label="Access variable R|<local>/x|"];
|
||||
79 [label="Enter safe call"];
|
||||
80 [label="Function call: $subj$.R|/A.id|()" style="filled" fillcolor=yellow];
|
||||
81 [label="Enter safe call"];
|
||||
82 [label="Function call: $subj$.R|/A.bool|()" style="filled" fillcolor=yellow];
|
||||
83 [label="Exit safe call"];
|
||||
84 [label="Exit safe call"];
|
||||
85 [label="Access variable R|<local>/x|"];
|
||||
86 [label="Function call: R|<local>/x|.R|/A.id<Inapplicable(UNSAFE_CALL): /A.id>#|()" style="filled" fillcolor=yellow];
|
||||
87 [label="Exit block"];
|
||||
}
|
||||
88 [label="Exit function test_4" style="filled" fillcolor=red];
|
||||
}
|
||||
75 -> {76};
|
||||
76 -> {77};
|
||||
77 -> {78};
|
||||
78 -> {79 83};
|
||||
|
||||
subgraph cluster_17 {
|
||||
color=red
|
||||
78 [label="Enter function test_4" style="filled" fillcolor=red];
|
||||
subgraph cluster_18 {
|
||||
color=blue
|
||||
79 [label="Enter block"];
|
||||
80 [label="Access variable R|<local>/x|"];
|
||||
81 [label="Enter safe call"];
|
||||
82 [label="Function call: $subj$.R|/A.id|()" style="filled" fillcolor=yellow];
|
||||
83 [label="Enter safe call"];
|
||||
84 [label="Function call: $subj$.R|/A.bool|()" style="filled" fillcolor=yellow];
|
||||
85 [label="Exit safe call"];
|
||||
86 [label="Exit safe call"];
|
||||
87 [label="Access variable R|<local>/x|"];
|
||||
88 [label="Function call: R|<local>/x|.R|/A.id<Inapplicable(UNSAFE_CALL): /A.id>#|()" style="filled" fillcolor=yellow];
|
||||
89 [label="Exit block"];
|
||||
}
|
||||
90 [label="Exit function test_4" style="filled" fillcolor=red];
|
||||
}
|
||||
78 -> {79};
|
||||
79 -> {80};
|
||||
80 -> {81 83};
|
||||
80 -> {81 85};
|
||||
81 -> {82};
|
||||
82 -> {84};
|
||||
82 -> {83 85};
|
||||
83 -> {84};
|
||||
84 -> {85};
|
||||
84 -> {86};
|
||||
85 -> {86};
|
||||
86 -> {87};
|
||||
87 -> {88};
|
||||
|
||||
subgraph cluster_18 {
|
||||
color=red
|
||||
89 [label="Enter function boo" style="filled" fillcolor=red];
|
||||
subgraph cluster_19 {
|
||||
color=blue
|
||||
90 [label="Enter block"];
|
||||
91 [label="Exit block"];
|
||||
}
|
||||
92 [label="Exit function boo" style="filled" fillcolor=red];
|
||||
}
|
||||
88 -> {89};
|
||||
89 -> {90};
|
||||
90 -> {91};
|
||||
91 -> {92};
|
||||
|
||||
subgraph cluster_20 {
|
||||
subgraph cluster_19 {
|
||||
color=red
|
||||
93 [label="Enter function test_5" style="filled" fillcolor=red];
|
||||
subgraph cluster_21 {
|
||||
91 [label="Enter function boo" style="filled" fillcolor=red];
|
||||
subgraph cluster_20 {
|
||||
color=blue
|
||||
94 [label="Enter block"];
|
||||
95 [label="Access variable R|<local>/x|"];
|
||||
96 [label="Enter safe call"];
|
||||
97 [label="Postponed enter to lambda"];
|
||||
subgraph cluster_22 {
|
||||
color=blue
|
||||
98 [label="Enter function <anonymous>" style="filled" fillcolor=red];
|
||||
subgraph cluster_23 {
|
||||
color=blue
|
||||
99 [label="Enter block"];
|
||||
100 [label="Jump: ^test_5 Unit"];
|
||||
101 [label="Stub" style="filled" fillcolor=gray];
|
||||
102 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
103 [label="Exit function <anonymous>" style="filled" fillcolor=gray];
|
||||
}
|
||||
104 [label="Postponed exit from lambda" style="filled" fillcolor=gray];
|
||||
105 [label="Function call: $subj$.R|kotlin/let|<R|A|, R|kotlin/Nothing|>(...)" style="filled" fillcolor=gray];
|
||||
106 [label="Stub" style="filled" fillcolor=gray];
|
||||
107 [label="Enter safe call" style="filled" fillcolor=gray];
|
||||
108 [label="Access variable R|<local>/x|" style="filled" fillcolor=gray];
|
||||
109 [label="Smart cast: R|<local>/x|" style="filled" fillcolor=gray];
|
||||
110 [label="Function call: R|<local>/x|.R|/A.bool|()" style="filled" fillcolor=gray];
|
||||
111 [label="Function call: $subj$.R|/boo|(...)" style="filled" fillcolor=gray];
|
||||
112 [label="Exit safe call"];
|
||||
113 [label="Exit safe call"];
|
||||
114 [label="Access variable R|<local>/x|"];
|
||||
115 [label="Function call: R|<local>/x|.R|/A.id<Inapplicable(UNSAFE_CALL): /A.id>#|()" style="filled" fillcolor=yellow];
|
||||
116 [label="Exit block"];
|
||||
92 [label="Enter block"];
|
||||
93 [label="Exit block"];
|
||||
}
|
||||
117 [label="Exit function test_5" style="filled" fillcolor=red];
|
||||
94 [label="Exit function boo" style="filled" fillcolor=red];
|
||||
}
|
||||
91 -> {92};
|
||||
92 -> {93};
|
||||
93 -> {94};
|
||||
94 -> {95};
|
||||
95 -> {96 112};
|
||||
|
||||
subgraph cluster_21 {
|
||||
color=red
|
||||
95 [label="Enter function test_5" style="filled" fillcolor=red];
|
||||
subgraph cluster_22 {
|
||||
color=blue
|
||||
96 [label="Enter block"];
|
||||
97 [label="Access variable R|<local>/x|"];
|
||||
98 [label="Enter safe call"];
|
||||
99 [label="Postponed enter to lambda"];
|
||||
subgraph cluster_23 {
|
||||
color=blue
|
||||
100 [label="Enter function <anonymous>" style="filled" fillcolor=red];
|
||||
subgraph cluster_24 {
|
||||
color=blue
|
||||
101 [label="Enter block"];
|
||||
102 [label="Jump: ^test_5 Unit"];
|
||||
103 [label="Stub" style="filled" fillcolor=gray];
|
||||
104 [label="Exit block" style="filled" fillcolor=gray];
|
||||
}
|
||||
105 [label="Exit function <anonymous>" style="filled" fillcolor=gray];
|
||||
}
|
||||
106 [label="Postponed exit from lambda" style="filled" fillcolor=gray];
|
||||
107 [label="Function call: $subj$.R|kotlin/let|<R|A|, R|kotlin/Nothing|>(...)" style="filled" fillcolor=gray];
|
||||
108 [label="Stub" style="filled" fillcolor=gray];
|
||||
109 [label="Enter safe call" style="filled" fillcolor=gray];
|
||||
110 [label="Access variable R|<local>/x|" style="filled" fillcolor=gray];
|
||||
111 [label="Smart cast: R|<local>/x|" style="filled" fillcolor=gray];
|
||||
112 [label="Function call: R|<local>/x|.R|/A.bool|()" style="filled" fillcolor=gray];
|
||||
113 [label="Function call: $subj$.R|/boo|(...)" style="filled" fillcolor=gray];
|
||||
114 [label="Exit safe call"];
|
||||
115 [label="Exit safe call"];
|
||||
116 [label="Access variable R|<local>/x|"];
|
||||
117 [label="Function call: R|<local>/x|.R|/A.id<Inapplicable(UNSAFE_CALL): /A.id>#|()" style="filled" fillcolor=yellow];
|
||||
118 [label="Exit block"];
|
||||
}
|
||||
119 [label="Exit function test_5" style="filled" fillcolor=red];
|
||||
}
|
||||
95 -> {96};
|
||||
96 -> {97};
|
||||
97 -> {98};
|
||||
97 -> {104 105} [style=dotted];
|
||||
97 -> {98} [style=dashed];
|
||||
97 -> {98 114};
|
||||
98 -> {99};
|
||||
99 -> {100};
|
||||
100 -> {117};
|
||||
100 -> {101} [style=dotted];
|
||||
101 -> {102} [style=dotted];
|
||||
99 -> {106 107} [style=dotted];
|
||||
99 -> {100} [style=dashed];
|
||||
100 -> {101};
|
||||
101 -> {102};
|
||||
102 -> {119};
|
||||
102 -> {103} [style=dotted];
|
||||
103 -> {104} [style=dotted];
|
||||
104 -> {105} [style=dotted];
|
||||
105 -> {106} [style=dotted];
|
||||
106 -> {107 112} [style=dotted];
|
||||
106 -> {107} [style=dotted];
|
||||
107 -> {108} [style=dotted];
|
||||
108 -> {109} [style=dotted];
|
||||
108 -> {109 114} [style=dotted];
|
||||
109 -> {110} [style=dotted];
|
||||
110 -> {111} [style=dotted];
|
||||
111 -> {113} [style=dotted];
|
||||
112 -> {113};
|
||||
113 -> {114};
|
||||
111 -> {112} [style=dotted];
|
||||
112 -> {113} [style=dotted];
|
||||
113 -> {115} [style=dotted];
|
||||
114 -> {115};
|
||||
115 -> {116};
|
||||
116 -> {117};
|
||||
117 -> {118};
|
||||
118 -> {119};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user