Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/smartcasts/nullability.dot
T
Brian Norman 17a1871b83 [FIR] Make sure the primary constructor is first in class CFG
The primary constructor of a class needs to be the first subgraph of the
class control-flow graph. Based on the Kotlin specification, class
initialization order goes first primary constructor, in-place
declarations (properties and init blocks), and then secondary
constructors. If the class doesn't have a primary constructor, then it
is just skipped in the order.

Unfortunately, the class control-flow graph had in-place declarations
first and then all constructors. Instead, we should treat the primary
constructor as the first in-place declaration, and then continue with
the existing processing as secondary constructors. This will guarantee
that super constructor calls have the correct property initialization
information.

^KT-65093 Fixed
2024-01-23 23:16:00 +00:00

1896 lines
70 KiB
Plaintext
Vendored

digraph nullability_kt {
graph [nodesep=3]
node [shape=box penwidth=2]
edge [penwidth=2]
subgraph cluster_0 {
color=red
0 [label="Enter file nullability.kt" style="filled" fillcolor=red];
1 [label="Exit file nullability.kt" 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 foo" style="filled" fillcolor=red];
5 [label="Exit function foo" style="filled" fillcolor=red];
}
4 -> {5};
subgraph cluster_3 {
color=red
6 [label="Enter function getA" style="filled" fillcolor=red];
7 [label="Exit function getA" style="filled" fillcolor=red];
}
6 -> {7};
subgraph cluster_4 {
color=red
8 [label="Enter class MyData" style="filled" fillcolor=red];
9 [label="Exit class MyData" style="filled" fillcolor=red];
}
8 -> {9} [color=green];
subgraph cluster_5 {
color=red
10 [label="Enter function fs" style="filled" fillcolor=red];
11 [label="Exit function fs" style="filled" fillcolor=red];
}
10 -> {11};
subgraph cluster_6 {
color=red
12 [label="Enter class Q" style="filled" fillcolor=red];
13 [label="Exit class Q" style="filled" fillcolor=red];
}
12 -> {13} [color=green];
subgraph cluster_7 {
color=red
14 [label="Enter function fdata" style="filled" fillcolor=red];
15 [label="Exit function fdata" style="filled" fillcolor=red];
}
14 -> {15};
subgraph cluster_8 {
color=red
16 [label="Enter class QImpl" style="filled" fillcolor=red];
subgraph cluster_9 {
color=blue
17 [label="Enter function <init>" style="filled" fillcolor=red];
18 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
19 [label="Exit function <init>" style="filled" fillcolor=red];
}
subgraph cluster_10 {
color=blue
20 [label="Enter property" style="filled" fillcolor=red];
21 [label="Access variable R|<local>/data|"];
22 [label="Exit property" style="filled" fillcolor=red];
}
23 [label="Exit class QImpl" style="filled" fillcolor=red];
}
16 -> {17} [color=green];
16 -> {23} [style=dotted];
16 -> {17 20} [style=dashed];
17 -> {18};
18 -> {19};
19 -> {20} [color=green];
20 -> {21};
21 -> {22};
22 -> {23} [color=green];
subgraph cluster_11 {
color=red
24 [label="Enter function fdata" style="filled" fillcolor=red];
subgraph cluster_12 {
color=blue
25 [label="Enter block"];
26 [label="Const: Null(null)"];
27 [label="Jump: ^fdata Null(null)"];
28 [label="Stub" style="filled" fillcolor=gray];
29 [label="Exit block" style="filled" fillcolor=gray];
}
30 [label="Exit function fdata" style="filled" fillcolor=red];
}
24 -> {25};
25 -> {26};
26 -> {27};
27 -> {30};
27 -> {28} [style=dotted];
28 -> {29} [style=dotted];
29 -> {30} [style=dotted];
subgraph cluster_13 {
color=red
31 [label="Enter class QImplMutable" style="filled" fillcolor=red];
subgraph cluster_14 {
color=blue
32 [label="Enter function <init>" style="filled" fillcolor=red];
33 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
34 [label="Exit function <init>" style="filled" fillcolor=red];
}
subgraph cluster_15 {
color=blue
35 [label="Enter property" style="filled" fillcolor=red];
36 [label="Access variable R|<local>/data|"];
37 [label="Exit property" style="filled" fillcolor=red];
}
38 [label="Exit class QImplMutable" style="filled" fillcolor=red];
}
31 -> {32} [color=green];
31 -> {38} [style=dotted];
31 -> {32 35} [style=dashed];
32 -> {33};
33 -> {34};
34 -> {35} [color=green];
35 -> {36};
36 -> {37};
37 -> {38} [color=green];
subgraph cluster_16 {
color=red
39 [label="Enter function fdata" style="filled" fillcolor=red];
subgraph cluster_17 {
color=blue
40 [label="Enter block"];
41 [label="Const: Null(null)"];
42 [label="Jump: ^fdata Null(null)"];
43 [label="Stub" style="filled" fillcolor=gray];
44 [label="Exit block" style="filled" fillcolor=gray];
}
45 [label="Exit function fdata" style="filled" fillcolor=red];
}
39 -> {40};
40 -> {41};
41 -> {42};
42 -> {45};
42 -> {43} [style=dotted];
43 -> {44} [style=dotted];
44 -> {45} [style=dotted];
subgraph cluster_18 {
color=red
46 [label="Enter class QImplWithCustomGetter" style="filled" fillcolor=red];
subgraph cluster_19 {
color=blue
47 [label="Enter function <init>" style="filled" fillcolor=red];
48 [label="Delegated constructor call: super<R|kotlin/Any|>()" style="filled" fillcolor=yellow];
49 [label="Exit function <init>" style="filled" fillcolor=red];
}
50 [label="Exit class QImplWithCustomGetter" style="filled" fillcolor=red];
}
46 -> {47} [color=green];
46 -> {50} [style=dotted];
46 -> {47} [style=dashed];
47 -> {48};
48 -> {49};
49 -> {50} [color=green];
subgraph cluster_20 {
color=red
51 [label="Enter function <getter>" style="filled" fillcolor=red];
subgraph cluster_21 {
color=blue
52 [label="Enter block"];
53 [label="Const: Null(null)"];
54 [label="Jump: ^ Null(null)"];
55 [label="Stub" style="filled" fillcolor=gray];
56 [label="Exit block" style="filled" fillcolor=gray];
}
57 [label="Exit function <getter>" style="filled" fillcolor=red];
}
51 -> {52};
52 -> {53};
53 -> {54};
54 -> {57};
54 -> {55} [style=dotted];
55 -> {56} [style=dotted];
56 -> {57} [style=dotted];
subgraph cluster_22 {
color=red
58 [label="Enter function fdata" style="filled" fillcolor=red];
subgraph cluster_23 {
color=blue
59 [label="Enter block"];
60 [label="Const: Null(null)"];
61 [label="Jump: ^fdata Null(null)"];
62 [label="Stub" style="filled" fillcolor=gray];
63 [label="Exit block" style="filled" fillcolor=gray];
}
64 [label="Exit function fdata" style="filled" fillcolor=red];
}
58 -> {59};
59 -> {60};
60 -> {61};
61 -> {64};
61 -> {62} [style=dotted];
62 -> {63} [style=dotted];
63 -> {64} [style=dotted];
subgraph cluster_24 {
color=red
65 [label="Enter function test_1" style="filled" fillcolor=red];
subgraph cluster_25 {
color=blue
66 [label="Enter block"];
subgraph cluster_26 {
color=blue
67 [label="Enter when"];
subgraph cluster_27 {
color=blue
68 [label="Enter when branch condition "];
69 [label="Access variable R|<local>/x|"];
70 [label="Const: Null(null)"];
71 [label="Equality operator !="];
72 [label="Exit when branch condition"];
}
subgraph cluster_28 {
color=blue
73 [label="Enter when branch condition else"];
74 [label="Exit when branch condition"];
}
75 [label="Enter when branch result"];
subgraph cluster_29 {
color=blue
76 [label="Enter block"];
subgraph cluster_30 {
color=blue
77 [label="Function call arguments enter"];
78 [label="Access variable R|<local>/x|"];
79 [label="Smart cast: R|<local>/x|"];
80 [label="Function call arguments exit"];
}
81 [label="Function call: R|<local>/x|.R|/A.foo<Inapplicable(UNSAFE_CALL): /A.foo>#|()" style="filled" fillcolor=yellow];
82 [label="Exit block"];
}
83 [label="Exit when branch result"];
84 [label="Enter when branch result"];
subgraph cluster_31 {
color=blue
85 [label="Enter block"];
subgraph cluster_32 {
color=blue
86 [label="Function call arguments enter"];
87 [label="Access variable R|<local>/x|"];
88 [label="Smart cast: R|<local>/x|"];
89 [label="Function call arguments exit"];
}
90 [label="Function call: R|<local>/x|.R|/A.foo|()" style="filled" fillcolor=yellow];
91 [label="Exit block"];
}
92 [label="Exit when branch result"];
93 [label="Exit when"];
}
subgraph cluster_33 {
color=blue
94 [label="Function call arguments enter"];
95 [label="Access variable R|<local>/x|"];
96 [label="Function call arguments exit"];
}
97 [label="Function call: R|<local>/x|.R|/A.foo<Inapplicable(UNSAFE_CALL): /A.foo>#|()" style="filled" fillcolor=yellow];
98 [label="Exit block"];
}
99 [label="Exit function test_1" style="filled" fillcolor=red];
}
65 -> {66};
66 -> {67};
67 -> {68};
68 -> {69};
69 -> {70};
70 -> {71};
71 -> {72};
72 -> {73 84};
73 -> {74};
74 -> {75};
75 -> {76};
76 -> {77};
77 -> {78};
78 -> {79};
79 -> {80};
80 -> {81};
81 -> {82};
82 -> {83};
83 -> {93};
84 -> {85};
85 -> {86};
86 -> {87};
87 -> {88};
88 -> {89};
89 -> {90};
90 -> {91};
91 -> {92};
92 -> {93};
93 -> {94};
94 -> {95};
95 -> {96};
96 -> {97};
97 -> {98};
98 -> {99};
subgraph cluster_34 {
color=red
100 [label="Enter function test_2" style="filled" fillcolor=red];
subgraph cluster_35 {
color=blue
101 [label="Enter block"];
subgraph cluster_36 {
color=blue
102 [label="Enter when"];
subgraph cluster_37 {
color=blue
103 [label="Enter when branch condition "];
104 [label="Access variable R|<local>/x|"];
105 [label="Const: Null(null)"];
106 [label="Equality operator =="];
107 [label="Exit when branch condition"];
}
subgraph cluster_38 {
color=blue
108 [label="Enter when branch condition else"];
109 [label="Exit when branch condition"];
}
110 [label="Enter when branch result"];
subgraph cluster_39 {
color=blue
111 [label="Enter block"];
subgraph cluster_40 {
color=blue
112 [label="Function call arguments enter"];
113 [label="Access variable R|<local>/x|"];
114 [label="Smart cast: R|<local>/x|"];
115 [label="Function call arguments exit"];
}
116 [label="Function call: R|<local>/x|.R|/A.foo|()" style="filled" fillcolor=yellow];
117 [label="Exit block"];
}
118 [label="Exit when branch result"];
119 [label="Enter when branch result"];
subgraph cluster_41 {
color=blue
120 [label="Enter block"];
subgraph cluster_42 {
color=blue
121 [label="Function call arguments enter"];
122 [label="Access variable R|<local>/x|"];
123 [label="Smart cast: R|<local>/x|"];
124 [label="Function call arguments exit"];
}
125 [label="Function call: R|<local>/x|.R|/A.foo<Inapplicable(UNSAFE_CALL): /A.foo>#|()" style="filled" fillcolor=yellow];
126 [label="Exit block"];
}
127 [label="Exit when branch result"];
128 [label="Exit when"];
}
subgraph cluster_43 {
color=blue
129 [label="Function call arguments enter"];
130 [label="Access variable R|<local>/x|"];
131 [label="Function call arguments exit"];
}
132 [label="Function call: R|<local>/x|.R|/A.foo<Inapplicable(UNSAFE_CALL): /A.foo>#|()" style="filled" fillcolor=yellow];
133 [label="Exit block"];
}
134 [label="Exit function test_2" style="filled" fillcolor=red];
}
100 -> {101};
101 -> {102};
102 -> {103};
103 -> {104};
104 -> {105};
105 -> {106};
106 -> {107};
107 -> {108 119};
108 -> {109};
109 -> {110};
110 -> {111};
111 -> {112};
112 -> {113};
113 -> {114};
114 -> {115};
115 -> {116};
116 -> {117};
117 -> {118};
118 -> {128};
119 -> {120};
120 -> {121};
121 -> {122};
122 -> {123};
123 -> {124};
124 -> {125};
125 -> {126};
126 -> {127};
127 -> {128};
128 -> {129};
129 -> {130};
130 -> {131};
131 -> {132};
132 -> {133};
133 -> {134};
subgraph cluster_44 {
color=red
135 [label="Enter function test_3" style="filled" fillcolor=red];
subgraph cluster_45 {
color=blue
136 [label="Enter block"];
137 [label="Access variable R|<local>/x|"];
138 [label="Exit lhs of ?:"];
139 [label="Enter rhs of ?:"];
140 [label="Jump: ^test_3 Unit"];
141 [label="Stub" style="filled" fillcolor=gray];
142 [label="Lhs of ?: is not null"];
143 [label="Exit ?:"];
subgraph cluster_46 {
color=blue
144 [label="Function call arguments enter"];
145 [label="Access variable R|<local>/x|"];
146 [label="Smart cast: R|<local>/x|"];
147 [label="Function call arguments exit"];
}
148 [label="Function call: R|<local>/x|.R|/A.foo|()" style="filled" fillcolor=yellow];
149 [label="Exit block"];
}
150 [label="Exit function test_3" style="filled" fillcolor=red];
}
135 -> {136};
136 -> {137};
137 -> {138};
138 -> {139 142};
139 -> {140};
140 -> {150};
140 -> {141} [style=dotted];
141 -> {143} [style=dotted];
142 -> {143};
143 -> {144};
144 -> {145};
145 -> {146};
146 -> {147};
147 -> {148};
148 -> {149};
149 -> {150};
subgraph cluster_47 {
color=red
151 [label="Enter function test_4" style="filled" fillcolor=red];
subgraph cluster_48 {
color=blue
152 [label="Enter block"];
subgraph cluster_49 {
color=blue
153 [label="Enter when"];
subgraph cluster_50 {
color=blue
154 [label="Enter when branch condition "];
155 [label="Access variable R|<local>/x|"];
156 [label="Enter safe call"];
subgraph cluster_51 {
color=blue
157 [label="Function call arguments enter"];
158 [label="Function call arguments exit"];
}
159 [label="Function call: $subj$.R|/A.getA|()" style="filled" fillcolor=yellow];
160 [label="Exit safe call"];
161 [label="Const: Null(null)"];
162 [label="Equality operator =="];
163 [label="Exit when branch condition"];
}
164 [label="Synthetic else branch"];
165 [label="Enter when branch result"];
subgraph cluster_52 {
color=blue
166 [label="Enter block"];
167 [label="Jump: ^test_4 Unit"];
168 [label="Stub" style="filled" fillcolor=gray];
169 [label="Exit block" style="filled" fillcolor=gray];
}
170 [label="Exit when branch result" style="filled" fillcolor=gray];
171 [label="Exit when"];
}
subgraph cluster_53 {
color=blue
172 [label="Function call arguments enter"];
173 [label="Access variable R|<local>/x|"];
174 [label="Smart cast: R|<local>/x|"];
175 [label="Function call arguments exit"];
}
176 [label="Function call: R|<local>/x|.R|/A.foo|()" style="filled" fillcolor=yellow];
177 [label="Exit block"];
}
178 [label="Exit function test_4" style="filled" fillcolor=red];
}
151 -> {152};
152 -> {153};
153 -> {154};
154 -> {155};
155 -> {156 160};
156 -> {157};
157 -> {158};
158 -> {159};
159 -> {160};
160 -> {161};
161 -> {162};
162 -> {163};
163 -> {164 165};
164 -> {171};
165 -> {166};
166 -> {167};
167 -> {178};
167 -> {168} [style=dotted];
168 -> {169} [style=dotted];
169 -> {170} [style=dotted];
170 -> {171} [style=dotted];
171 -> {172};
172 -> {173};
173 -> {174};
174 -> {175};
175 -> {176};
176 -> {177};
177 -> {178};
subgraph cluster_54 {
color=red
179 [label="Enter function test_5" style="filled" fillcolor=red];
subgraph cluster_55 {
color=blue
180 [label="Enter block"];
subgraph cluster_56 {
color=blue
181 [label="Enter when"];
subgraph cluster_57 {
color=blue
182 [label="Enter when branch condition "];
183 [label="Access variable R|<local>/q|"];
184 [label="Enter safe call"];
185 [label="Access variable R|/Q.data|"];
186 [label="Enter safe call"];
187 [label="Access variable R|/MyData.s|"];
188 [label="Enter safe call"];
subgraph cluster_58 {
color=blue
189 [label="Function call arguments enter"];
190 [label="Function call arguments exit"];
}
191 [label="Function call: $subj$.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
192 [label="Exit safe call"];
193 [label="Exit safe call"];
194 [label="Exit safe call"];
195 [label="Const: Null(null)"];
196 [label="Equality operator !="];
197 [label="Exit when branch condition"];
}
198 [label="Synthetic else branch"];
199 [label="Enter when branch result"];
subgraph cluster_59 {
color=blue
200 [label="Enter block"];
201 [label="Access variable R|<local>/q|"];
202 [label="Smart cast: R|<local>/q|"];
203 [label="Access variable R|/Q.data|"];
204 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
205 [label="Access variable R|<local>/q|"];
206 [label="Smart cast: R|<local>/q|"];
207 [label="Access variable R|/Q.data|"];
208 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
209 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
subgraph cluster_60 {
color=blue
210 [label="Function call arguments enter"];
211 [label="Access variable R|<local>/q|"];
212 [label="Smart cast: R|<local>/q|"];
213 [label="Access variable R|/Q.data|"];
214 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
215 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
216 [label="Function call arguments exit"];
}
217 [label="Function call: R|<local>/q|.R|/Q.data|.R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
218 [label="Exit block"];
}
219 [label="Exit when branch result"];
220 [label="Exit when"];
}
221 [label="Exit block"];
}
222 [label="Exit function test_5" style="filled" fillcolor=red];
}
179 -> {180};
180 -> {181};
181 -> {182};
182 -> {183};
183 -> {184 192};
184 -> {185};
185 -> {186 192};
186 -> {187};
187 -> {188 193};
188 -> {189};
189 -> {190};
190 -> {191};
191 -> {194};
192 -> {193};
193 -> {194};
194 -> {195};
195 -> {196};
196 -> {197};
197 -> {198 199};
198 -> {220};
199 -> {200};
200 -> {201};
201 -> {202};
202 -> {203};
203 -> {204};
204 -> {205};
205 -> {206};
206 -> {207};
207 -> {208};
208 -> {209};
209 -> {210};
210 -> {211};
211 -> {212};
212 -> {213};
213 -> {214};
214 -> {215};
215 -> {216};
216 -> {217};
217 -> {218};
218 -> {219};
219 -> {220};
220 -> {221};
221 -> {222};
subgraph cluster_61 {
color=red
223 [label="Enter function test_6" style="filled" fillcolor=red];
subgraph cluster_62 {
color=blue
224 [label="Enter block"];
225 [label="Access variable R|<local>/q|"];
226 [label="Enter safe call"];
227 [label="Access variable R|/Q.data|"];
228 [label="Enter safe call"];
229 [label="Access variable R|/MyData.s|"];
230 [label="Enter safe call"];
subgraph cluster_63 {
color=blue
231 [label="Function call arguments enter"];
232 [label="Function call arguments exit"];
}
233 [label="Function call: $subj$.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
234 [label="Exit safe call"];
235 [label="Exit lhs of ?:"];
236 [label="Lhs of ?: is not null"];
237 [label="Exit safe call"];
238 [label="Exit safe call"];
239 [label="Enter rhs of ?:"];
240 [label="Jump: ^test_6 Unit"];
241 [label="Stub" style="filled" fillcolor=gray];
242 [label="Exit ?:"];
243 [label="Access variable R|<local>/q|"];
244 [label="Smart cast: R|<local>/q|"];
245 [label="Access variable R|/Q.data|"];
246 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
247 [label="Access variable R|<local>/q|"];
248 [label="Smart cast: R|<local>/q|"];
249 [label="Access variable R|/Q.data|"];
250 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
251 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
subgraph cluster_64 {
color=blue
252 [label="Function call arguments enter"];
253 [label="Access variable R|<local>/q|"];
254 [label="Smart cast: R|<local>/q|"];
255 [label="Access variable R|/Q.data|"];
256 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
257 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
258 [label="Function call arguments exit"];
}
259 [label="Function call: R|<local>/q|.R|/Q.data|.R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
260 [label="Exit block"];
}
261 [label="Exit function test_6" style="filled" fillcolor=red];
}
223 -> {224};
224 -> {225};
225 -> {226 237};
226 -> {227};
227 -> {228 237};
228 -> {229};
229 -> {230 238};
230 -> {231};
231 -> {232};
232 -> {233};
233 -> {234};
234 -> {235};
235 -> {236 239};
236 -> {242};
237 -> {238};
238 -> {239};
239 -> {240};
240 -> {261};
240 -> {241} [style=dotted];
241 -> {242} [style=dotted];
242 -> {243};
243 -> {244};
244 -> {245};
245 -> {246};
246 -> {247};
247 -> {248};
248 -> {249};
249 -> {250};
250 -> {251};
251 -> {252};
252 -> {253};
253 -> {254};
254 -> {255};
255 -> {256};
256 -> {257};
257 -> {258};
258 -> {259};
259 -> {260};
260 -> {261};
subgraph cluster_65 {
color=red
262 [label="Enter function test_7" style="filled" fillcolor=red];
subgraph cluster_66 {
color=blue
263 [label="Enter block"];
subgraph cluster_67 {
color=blue
264 [label="Enter when"];
subgraph cluster_68 {
color=blue
265 [label="Enter when branch condition "];
266 [label="Access variable R|<local>/q|"];
267 [label="Enter safe call"];
subgraph cluster_69 {
color=blue
268 [label="Function call arguments enter"];
269 [label="Function call arguments exit"];
}
270 [label="Function call: $subj$.R|/Q.fdata|()" style="filled" fillcolor=yellow];
271 [label="Enter safe call"];
subgraph cluster_70 {
color=blue
272 [label="Function call arguments enter"];
273 [label="Function call arguments exit"];
}
274 [label="Function call: $subj$.R|/MyData.fs|()" style="filled" fillcolor=yellow];
275 [label="Enter safe call"];
subgraph cluster_71 {
color=blue
276 [label="Function call arguments enter"];
277 [label="Function call arguments exit"];
}
278 [label="Function call: $subj$.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
279 [label="Exit safe call"];
280 [label="Exit safe call"];
281 [label="Exit safe call"];
282 [label="Const: Null(null)"];
283 [label="Equality operator !="];
284 [label="Exit when branch condition"];
}
285 [label="Synthetic else branch"];
286 [label="Enter when branch result"];
subgraph cluster_72 {
color=blue
287 [label="Enter block"];
subgraph cluster_73 {
color=blue
288 [label="Function call arguments enter"];
289 [label="Access variable R|<local>/q|"];
290 [label="Smart cast: R|<local>/q|"];
291 [label="Function call arguments exit"];
}
292 [label="Function call: R|<local>/q|.R|/Q.fdata|()" style="filled" fillcolor=yellow];
subgraph cluster_74 {
color=blue
293 [label="Function call arguments enter"];
subgraph cluster_75 {
color=blue
294 [label="Function call arguments enter"];
295 [label="Access variable R|<local>/q|"];
296 [label="Smart cast: R|<local>/q|"];
297 [label="Function call arguments exit"];
}
298 [label="Function call: R|<local>/q|.R|/Q.fdata|()" style="filled" fillcolor=yellow];
299 [label="Function call arguments exit"];
}
300 [label="Function call: R|<local>/q|.R|/Q.fdata|().R|/MyData.fs<Inapplicable(UNSAFE_CALL): /MyData.fs>#|()" style="filled" fillcolor=yellow];
subgraph cluster_76 {
color=blue
301 [label="Function call arguments enter"];
subgraph cluster_77 {
color=blue
302 [label="Function call arguments enter"];
subgraph cluster_78 {
color=blue
303 [label="Function call arguments enter"];
304 [label="Access variable R|<local>/q|"];
305 [label="Smart cast: R|<local>/q|"];
306 [label="Function call arguments exit"];
}
307 [label="Function call: R|<local>/q|.R|/Q.fdata|()" style="filled" fillcolor=yellow];
308 [label="Function call arguments exit"];
}
309 [label="Function call: R|<local>/q|.R|/Q.fdata|().R|/MyData.fs<Inapplicable(UNSAFE_CALL): /MyData.fs>#|()" style="filled" fillcolor=yellow];
310 [label="Function call arguments exit"];
}
311 [label="Function call: R|<local>/q|.R|/Q.fdata|().R|/MyData.fs<Inapplicable(UNSAFE_CALL): /MyData.fs>#|().R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
312 [label="Exit block"];
}
313 [label="Exit when branch result"];
314 [label="Exit when"];
}
315 [label="Exit block"];
}
316 [label="Exit function test_7" style="filled" fillcolor=red];
}
262 -> {263};
263 -> {264};
264 -> {265};
265 -> {266};
266 -> {267 279};
267 -> {268};
268 -> {269};
269 -> {270};
270 -> {271 279};
271 -> {272};
272 -> {273};
273 -> {274};
274 -> {275 280};
275 -> {276};
276 -> {277};
277 -> {278};
278 -> {281};
279 -> {280};
280 -> {281};
281 -> {282};
282 -> {283};
283 -> {284};
284 -> {285 286};
285 -> {314};
286 -> {287};
287 -> {288};
288 -> {289};
289 -> {290};
290 -> {291};
291 -> {292};
292 -> {293};
293 -> {294};
294 -> {295};
295 -> {296};
296 -> {297};
297 -> {298};
298 -> {299};
299 -> {300};
300 -> {301};
301 -> {302};
302 -> {303};
303 -> {304};
304 -> {305};
305 -> {306};
306 -> {307};
307 -> {308};
308 -> {309};
309 -> {310};
310 -> {311};
311 -> {312};
312 -> {313};
313 -> {314};
314 -> {315};
315 -> {316};
subgraph cluster_79 {
color=red
317 [label="Enter function test_8" style="filled" fillcolor=red];
subgraph cluster_80 {
color=blue
318 [label="Enter block"];
subgraph cluster_81 {
color=blue
319 [label="Enter when"];
subgraph cluster_82 {
color=blue
320 [label="Enter when branch condition "];
321 [label="Access variable R|<local>/b|"];
322 [label="Const: Boolean(true)"];
323 [label="Equality operator =="];
324 [label="Exit when branch condition"];
}
325 [label="Synthetic else branch"];
326 [label="Enter when branch result"];
subgraph cluster_83 {
color=blue
327 [label="Enter block"];
subgraph cluster_84 {
color=blue
328 [label="Function call arguments enter"];
329 [label="Access variable R|<local>/b|"];
330 [label="Smart cast: R|<local>/b|"];
331 [label="Function call arguments exit"];
}
332 [label="Function call: R|<local>/b|.R|kotlin/Boolean.not|()" style="filled" fillcolor=yellow];
333 [label="Exit block"];
}
334 [label="Exit when branch result"];
335 [label="Exit when"];
}
336 [label="Exit block"];
}
337 [label="Exit function test_8" style="filled" fillcolor=red];
}
317 -> {318};
318 -> {319};
319 -> {320};
320 -> {321};
321 -> {322};
322 -> {323};
323 -> {324};
324 -> {325 326};
325 -> {335};
326 -> {327};
327 -> {328};
328 -> {329};
329 -> {330};
330 -> {331};
331 -> {332};
332 -> {333};
333 -> {334};
334 -> {335};
335 -> {336};
336 -> {337};
subgraph cluster_85 {
color=red
338 [label="Enter function test_9" style="filled" fillcolor=red];
subgraph cluster_86 {
color=blue
339 [label="Enter block"];
subgraph cluster_87 {
color=blue
340 [label="Enter when"];
subgraph cluster_88 {
color=blue
341 [label="Enter when branch condition "];
342 [label="Access variable R|<local>/a|"];
343 [label="Access variable R|<local>/b|"];
344 [label="Equality operator =="];
345 [label="Exit when branch condition"];
}
346 [label="Synthetic else branch"];
347 [label="Enter when branch result"];
subgraph cluster_89 {
color=blue
348 [label="Enter block"];
subgraph cluster_90 {
color=blue
349 [label="Function call arguments enter"];
350 [label="Access variable R|<local>/b|"];
351 [label="Smart cast: R|<local>/b|"];
352 [label="Function call arguments exit"];
}
353 [label="Function call: R|<local>/b|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
354 [label="Exit block"];
}
355 [label="Exit when branch result"];
356 [label="Exit when"];
}
subgraph cluster_91 {
color=blue
357 [label="Function call arguments enter"];
358 [label="Access variable R|<local>/b|"];
359 [label="Function call arguments exit"];
}
360 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
subgraph cluster_92 {
color=blue
361 [label="Enter when"];
subgraph cluster_93 {
color=blue
362 [label="Enter when branch condition "];
363 [label="Access variable R|<local>/a|"];
364 [label="Access variable R|<local>/b|"];
365 [label="Equality operator ==="];
366 [label="Exit when branch condition"];
}
367 [label="Synthetic else branch"];
368 [label="Enter when branch result"];
subgraph cluster_94 {
color=blue
369 [label="Enter block"];
subgraph cluster_95 {
color=blue
370 [label="Function call arguments enter"];
371 [label="Access variable R|<local>/b|"];
372 [label="Smart cast: R|<local>/b|"];
373 [label="Function call arguments exit"];
}
374 [label="Function call: R|<local>/b|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
375 [label="Exit block"];
}
376 [label="Exit when branch result"];
377 [label="Exit when"];
}
subgraph cluster_96 {
color=blue
378 [label="Function call arguments enter"];
379 [label="Access variable R|<local>/b|"];
380 [label="Function call arguments exit"];
}
381 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
subgraph cluster_97 {
color=blue
382 [label="Enter when"];
subgraph cluster_98 {
color=blue
383 [label="Enter when branch condition "];
384 [label="Access variable R|<local>/b|"];
385 [label="Access variable R|<local>/a|"];
386 [label="Equality operator =="];
387 [label="Exit when branch condition"];
}
388 [label="Synthetic else branch"];
389 [label="Enter when branch result"];
subgraph cluster_99 {
color=blue
390 [label="Enter block"];
subgraph cluster_100 {
color=blue
391 [label="Function call arguments enter"];
392 [label="Access variable R|<local>/b|"];
393 [label="Smart cast: R|<local>/b|"];
394 [label="Function call arguments exit"];
}
395 [label="Function call: R|<local>/b|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
396 [label="Exit block"];
}
397 [label="Exit when branch result"];
398 [label="Exit when"];
}
subgraph cluster_101 {
color=blue
399 [label="Function call arguments enter"];
400 [label="Access variable R|<local>/b|"];
401 [label="Function call arguments exit"];
}
402 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
subgraph cluster_102 {
color=blue
403 [label="Enter when"];
subgraph cluster_103 {
color=blue
404 [label="Enter when branch condition "];
405 [label="Access variable R|<local>/b|"];
406 [label="Access variable R|<local>/a|"];
407 [label="Equality operator ==="];
408 [label="Exit when branch condition"];
}
409 [label="Synthetic else branch"];
410 [label="Enter when branch result"];
subgraph cluster_104 {
color=blue
411 [label="Enter block"];
subgraph cluster_105 {
color=blue
412 [label="Function call arguments enter"];
413 [label="Access variable R|<local>/b|"];
414 [label="Smart cast: R|<local>/b|"];
415 [label="Function call arguments exit"];
}
416 [label="Function call: R|<local>/b|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
417 [label="Exit block"];
}
418 [label="Exit when branch result"];
419 [label="Exit when"];
}
subgraph cluster_106 {
color=blue
420 [label="Function call arguments enter"];
421 [label="Access variable R|<local>/b|"];
422 [label="Function call arguments exit"];
}
423 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
424 [label="Exit block"];
}
425 [label="Exit function test_9" style="filled" fillcolor=red];
}
338 -> {339};
339 -> {340};
340 -> {341};
341 -> {342};
342 -> {343};
343 -> {344};
344 -> {345};
345 -> {346 347};
346 -> {356};
347 -> {348};
348 -> {349};
349 -> {350};
350 -> {351};
351 -> {352};
352 -> {353};
353 -> {354};
354 -> {355};
355 -> {356};
356 -> {357};
357 -> {358};
358 -> {359};
359 -> {360};
360 -> {361};
361 -> {362};
362 -> {363};
363 -> {364};
364 -> {365};
365 -> {366};
366 -> {367 368};
367 -> {377};
368 -> {369};
369 -> {370};
370 -> {371};
371 -> {372};
372 -> {373};
373 -> {374};
374 -> {375};
375 -> {376};
376 -> {377};
377 -> {378};
378 -> {379};
379 -> {380};
380 -> {381};
381 -> {382};
382 -> {383};
383 -> {384};
384 -> {385};
385 -> {386};
386 -> {387};
387 -> {388 389};
388 -> {398};
389 -> {390};
390 -> {391};
391 -> {392};
392 -> {393};
393 -> {394};
394 -> {395};
395 -> {396};
396 -> {397};
397 -> {398};
398 -> {399};
399 -> {400};
400 -> {401};
401 -> {402};
402 -> {403};
403 -> {404};
404 -> {405};
405 -> {406};
406 -> {407};
407 -> {408};
408 -> {409 410};
409 -> {419};
410 -> {411};
411 -> {412};
412 -> {413};
413 -> {414};
414 -> {415};
415 -> {416};
416 -> {417};
417 -> {418};
418 -> {419};
419 -> {420};
420 -> {421};
421 -> {422};
422 -> {423};
423 -> {424};
424 -> {425};
subgraph cluster_107 {
color=red
426 [label="Enter function test_10" style="filled" fillcolor=red];
subgraph cluster_108 {
color=blue
427 [label="Enter block"];
subgraph cluster_109 {
color=blue
428 [label="Enter when"];
subgraph cluster_110 {
color=blue
429 [label="Enter when branch condition "];
430 [label="Access variable R|<local>/a|"];
431 [label="Access variable R|<local>/b|"];
432 [label="Equality operator =="];
433 [label="Exit when branch condition"];
}
434 [label="Synthetic else branch"];
435 [label="Enter when branch result"];
subgraph cluster_111 {
color=blue
436 [label="Enter block"];
subgraph cluster_112 {
color=blue
437 [label="Function call arguments enter"];
438 [label="Access variable R|<local>/b|"];
439 [label="Function call arguments exit"];
}
440 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
441 [label="Exit block"];
}
442 [label="Exit when branch result"];
443 [label="Exit when"];
}
subgraph cluster_113 {
color=blue
444 [label="Function call arguments enter"];
445 [label="Access variable R|<local>/b|"];
446 [label="Function call arguments exit"];
}
447 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
subgraph cluster_114 {
color=blue
448 [label="Enter when"];
subgraph cluster_115 {
color=blue
449 [label="Enter when branch condition "];
450 [label="Access variable R|<local>/a|"];
451 [label="Access variable R|<local>/b|"];
452 [label="Equality operator ==="];
453 [label="Exit when branch condition"];
}
454 [label="Synthetic else branch"];
455 [label="Enter when branch result"];
subgraph cluster_116 {
color=blue
456 [label="Enter block"];
subgraph cluster_117 {
color=blue
457 [label="Function call arguments enter"];
458 [label="Access variable R|<local>/b|"];
459 [label="Function call arguments exit"];
}
460 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
461 [label="Exit block"];
}
462 [label="Exit when branch result"];
463 [label="Exit when"];
}
subgraph cluster_118 {
color=blue
464 [label="Function call arguments enter"];
465 [label="Access variable R|<local>/b|"];
466 [label="Function call arguments exit"];
}
467 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
subgraph cluster_119 {
color=blue
468 [label="Enter when"];
subgraph cluster_120 {
color=blue
469 [label="Enter when branch condition "];
470 [label="Access variable R|<local>/b|"];
471 [label="Access variable R|<local>/a|"];
472 [label="Equality operator =="];
473 [label="Exit when branch condition"];
}
474 [label="Synthetic else branch"];
475 [label="Enter when branch result"];
subgraph cluster_121 {
color=blue
476 [label="Enter block"];
subgraph cluster_122 {
color=blue
477 [label="Function call arguments enter"];
478 [label="Access variable R|<local>/b|"];
479 [label="Function call arguments exit"];
}
480 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
481 [label="Exit block"];
}
482 [label="Exit when branch result"];
483 [label="Exit when"];
}
subgraph cluster_123 {
color=blue
484 [label="Function call arguments enter"];
485 [label="Access variable R|<local>/b|"];
486 [label="Function call arguments exit"];
}
487 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
subgraph cluster_124 {
color=blue
488 [label="Enter when"];
subgraph cluster_125 {
color=blue
489 [label="Enter when branch condition "];
490 [label="Access variable R|<local>/b|"];
491 [label="Access variable R|<local>/a|"];
492 [label="Equality operator ==="];
493 [label="Exit when branch condition"];
}
494 [label="Synthetic else branch"];
495 [label="Enter when branch result"];
subgraph cluster_126 {
color=blue
496 [label="Enter block"];
subgraph cluster_127 {
color=blue
497 [label="Function call arguments enter"];
498 [label="Access variable R|<local>/b|"];
499 [label="Function call arguments exit"];
}
500 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
501 [label="Exit block"];
}
502 [label="Exit when branch result"];
503 [label="Exit when"];
}
subgraph cluster_128 {
color=blue
504 [label="Function call arguments enter"];
505 [label="Access variable R|<local>/b|"];
506 [label="Function call arguments exit"];
}
507 [label="Function call: R|<local>/b|.R|kotlin/Int.inc<Inapplicable(UNSAFE_CALL): kotlin/Int.inc>#|()" style="filled" fillcolor=yellow];
508 [label="Exit block"];
}
509 [label="Exit function test_10" style="filled" fillcolor=red];
}
426 -> {427};
427 -> {428};
428 -> {429};
429 -> {430};
430 -> {431};
431 -> {432};
432 -> {433};
433 -> {434 435};
434 -> {443};
435 -> {436};
436 -> {437};
437 -> {438};
438 -> {439};
439 -> {440};
440 -> {441};
441 -> {442};
442 -> {443};
443 -> {444};
444 -> {445};
445 -> {446};
446 -> {447};
447 -> {448};
448 -> {449};
449 -> {450};
450 -> {451};
451 -> {452};
452 -> {453};
453 -> {454 455};
454 -> {463};
455 -> {456};
456 -> {457};
457 -> {458};
458 -> {459};
459 -> {460};
460 -> {461};
461 -> {462};
462 -> {463};
463 -> {464};
464 -> {465};
465 -> {466};
466 -> {467};
467 -> {468};
468 -> {469};
469 -> {470};
470 -> {471};
471 -> {472};
472 -> {473};
473 -> {474 475};
474 -> {483};
475 -> {476};
476 -> {477};
477 -> {478};
478 -> {479};
479 -> {480};
480 -> {481};
481 -> {482};
482 -> {483};
483 -> {484};
484 -> {485};
485 -> {486};
486 -> {487};
487 -> {488};
488 -> {489};
489 -> {490};
490 -> {491};
491 -> {492};
492 -> {493};
493 -> {494 495};
494 -> {503};
495 -> {496};
496 -> {497};
497 -> {498};
498 -> {499};
499 -> {500};
500 -> {501};
501 -> {502};
502 -> {503};
503 -> {504};
504 -> {505};
505 -> {506};
506 -> {507};
507 -> {508};
508 -> {509};
subgraph cluster_129 {
color=red
510 [label="Enter function test_11" style="filled" fillcolor=red];
subgraph cluster_130 {
color=blue
511 [label="Enter block"];
subgraph cluster_131 {
color=blue
512 [label="Enter when"];
subgraph cluster_132 {
color=blue
513 [label="Enter when branch condition "];
514 [label="Access variable R|<local>/q|"];
515 [label="Enter safe call"];
516 [label="Access variable R|/QImpl.data|"];
517 [label="Enter safe call"];
518 [label="Access variable R|/MyData.s|"];
519 [label="Enter safe call"];
subgraph cluster_133 {
color=blue
520 [label="Function call arguments enter"];
521 [label="Function call arguments exit"];
}
522 [label="Function call: $subj$.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
523 [label="Exit safe call"];
524 [label="Exit safe call"];
525 [label="Exit safe call"];
526 [label="Const: Null(null)"];
527 [label="Equality operator !="];
528 [label="Exit when branch condition"];
}
529 [label="Synthetic else branch"];
530 [label="Enter when branch result"];
subgraph cluster_134 {
color=blue
531 [label="Enter block"];
532 [label="Access variable R|<local>/q|"];
533 [label="Smart cast: R|<local>/q|"];
534 [label="Access variable R|/QImpl.data|"];
535 [label="Smart cast: R|<local>/q|.R|/QImpl.data|"];
536 [label="Access variable R|<local>/q|"];
537 [label="Smart cast: R|<local>/q|"];
538 [label="Access variable R|/QImpl.data|"];
539 [label="Smart cast: R|<local>/q|.R|/QImpl.data|"];
540 [label="Access variable R|/MyData.s|"];
subgraph cluster_135 {
color=blue
541 [label="Function call arguments enter"];
542 [label="Access variable R|<local>/q|"];
543 [label="Smart cast: R|<local>/q|"];
544 [label="Access variable R|/QImpl.data|"];
545 [label="Smart cast: R|<local>/q|.R|/QImpl.data|"];
546 [label="Access variable R|/MyData.s|"];
547 [label="Function call arguments exit"];
}
548 [label="Function call: R|<local>/q|.R|/QImpl.data|.R|/MyData.s|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
549 [label="Access variable R|<local>/q2|"];
550 [label="Access variable R|/QImpl.data|"];
551 [label="Access variable R|<local>/q2|"];
552 [label="Access variable R|/QImpl.data|"];
553 [label="Access variable R|/MyData.s<Inapplicable(UNSAFE_CALL): /MyData.s>#|"];
subgraph cluster_136 {
color=blue
554 [label="Function call arguments enter"];
555 [label="Access variable R|<local>/q2|"];
556 [label="Access variable R|/QImpl.data|"];
557 [label="Access variable R|/MyData.s<Inapplicable(UNSAFE_CALL): /MyData.s>#|"];
558 [label="Function call arguments exit"];
}
559 [label="Function call: R|<local>/q2|.R|/QImpl.data|.R|/MyData.s<Inapplicable(UNSAFE_CALL): /MyData.s>#|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
subgraph cluster_137 {
color=blue
560 [label="Enter when"];
subgraph cluster_138 {
color=blue
561 [label="Enter when branch condition "];
562 [label="Access variable R|<local>/q2|"];
563 [label="Access variable R|/QImpl.data|"];
564 [label="Const: Null(null)"];
565 [label="Equality operator !="];
566 [label="Exit when branch condition"];
}
567 [label="Synthetic else branch"];
568 [label="Enter when branch result"];
subgraph cluster_139 {
color=blue
569 [label="Enter block"];
570 [label="Access variable R|<local>/q2|"];
571 [label="Access variable R|/QImpl.data|"];
572 [label="Smart cast: R|<local>/q2|.R|/QImpl.data|"];
573 [label="Access variable R|/MyData.s|"];
subgraph cluster_140 {
color=blue
574 [label="Function call arguments enter"];
575 [label="Access variable R|<local>/q2|"];
576 [label="Access variable R|/QImpl.data|"];
577 [label="Smart cast: R|<local>/q2|.R|/QImpl.data|"];
578 [label="Access variable R|/MyData.s|"];
579 [label="Function call arguments exit"];
}
580 [label="Function call: R|<local>/q2|.R|/QImpl.data|.R|/MyData.s|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
581 [label="Exit block"];
}
582 [label="Exit when branch result"];
583 [label="Exit when"];
}
584 [label="Exit block"];
}
585 [label="Exit when branch result"];
586 [label="Exit when"];
}
587 [label="Exit block"];
}
588 [label="Exit function test_11" style="filled" fillcolor=red];
}
510 -> {511};
511 -> {512};
512 -> {513};
513 -> {514};
514 -> {515 523};
515 -> {516};
516 -> {517 523};
517 -> {518};
518 -> {519 524};
519 -> {520};
520 -> {521};
521 -> {522};
522 -> {525};
523 -> {524};
524 -> {525};
525 -> {526};
526 -> {527};
527 -> {528};
528 -> {529 530};
529 -> {586};
530 -> {531};
531 -> {532};
532 -> {533};
533 -> {534};
534 -> {535};
535 -> {536};
536 -> {537};
537 -> {538};
538 -> {539};
539 -> {540};
540 -> {541};
541 -> {542};
542 -> {543};
543 -> {544};
544 -> {545};
545 -> {546};
546 -> {547};
547 -> {548};
548 -> {549};
549 -> {550};
550 -> {551};
551 -> {552};
552 -> {553};
553 -> {554};
554 -> {555};
555 -> {556};
556 -> {557};
557 -> {558};
558 -> {559};
559 -> {560};
560 -> {561};
561 -> {562};
562 -> {563};
563 -> {564};
564 -> {565};
565 -> {566};
566 -> {567 568};
567 -> {583};
568 -> {569};
569 -> {570};
570 -> {571};
571 -> {572};
572 -> {573};
573 -> {574};
574 -> {575};
575 -> {576};
576 -> {577};
577 -> {578};
578 -> {579};
579 -> {580};
580 -> {581};
581 -> {582};
582 -> {583};
583 -> {584};
584 -> {585};
585 -> {586};
586 -> {587};
587 -> {588};
subgraph cluster_141 {
color=red
589 [label="Enter function test_12" style="filled" fillcolor=red];
subgraph cluster_142 {
color=blue
590 [label="Enter block"];
subgraph cluster_143 {
color=blue
591 [label="Enter when"];
subgraph cluster_144 {
color=blue
592 [label="Enter when branch condition "];
593 [label="Access variable R|<local>/q|"];
594 [label="Enter safe call"];
595 [label="Access variable R|/QImplWithCustomGetter.data|"];
596 [label="Enter safe call"];
597 [label="Access variable R|/MyData.s|"];
598 [label="Enter safe call"];
subgraph cluster_145 {
color=blue
599 [label="Function call arguments enter"];
600 [label="Function call arguments exit"];
}
601 [label="Function call: $subj$.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
602 [label="Exit safe call"];
603 [label="Exit safe call"];
604 [label="Exit safe call"];
605 [label="Const: Null(null)"];
606 [label="Equality operator !="];
607 [label="Exit when branch condition"];
}
608 [label="Synthetic else branch"];
609 [label="Enter when branch result"];
subgraph cluster_146 {
color=blue
610 [label="Enter block"];
611 [label="Access variable R|<local>/q|"];
612 [label="Smart cast: R|<local>/q|"];
613 [label="Access variable R|/QImplWithCustomGetter.data|"];
614 [label="Smart cast: R|<local>/q|.R|/QImplWithCustomGetter.data|"];
615 [label="Access variable R|<local>/q|"];
616 [label="Smart cast: R|<local>/q|"];
617 [label="Access variable R|/QImplWithCustomGetter.data|"];
618 [label="Smart cast: R|<local>/q|.R|/QImplWithCustomGetter.data|"];
619 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
subgraph cluster_147 {
color=blue
620 [label="Function call arguments enter"];
621 [label="Access variable R|<local>/q|"];
622 [label="Smart cast: R|<local>/q|"];
623 [label="Access variable R|/QImplWithCustomGetter.data|"];
624 [label="Smart cast: R|<local>/q|.R|/QImplWithCustomGetter.data|"];
625 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
626 [label="Function call arguments exit"];
}
627 [label="Function call: R|<local>/q|.R|/QImplWithCustomGetter.data|.R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
628 [label="Exit block"];
}
629 [label="Exit when branch result"];
630 [label="Exit when"];
}
631 [label="Exit block"];
}
632 [label="Exit function test_12" style="filled" fillcolor=red];
}
589 -> {590};
590 -> {591};
591 -> {592};
592 -> {593};
593 -> {594 602};
594 -> {595};
595 -> {596 602};
596 -> {597};
597 -> {598 603};
598 -> {599};
599 -> {600};
600 -> {601};
601 -> {604};
602 -> {603};
603 -> {604};
604 -> {605};
605 -> {606};
606 -> {607};
607 -> {608 609};
608 -> {630};
609 -> {610};
610 -> {611};
611 -> {612};
612 -> {613};
613 -> {614};
614 -> {615};
615 -> {616};
616 -> {617};
617 -> {618};
618 -> {619};
619 -> {620};
620 -> {621};
621 -> {622};
622 -> {623};
623 -> {624};
624 -> {625};
625 -> {626};
626 -> {627};
627 -> {628};
628 -> {629};
629 -> {630};
630 -> {631};
631 -> {632};
subgraph cluster_148 {
color=red
633 [label="Enter function test_13" style="filled" fillcolor=red];
subgraph cluster_149 {
color=blue
634 [label="Enter block"];
subgraph cluster_150 {
color=blue
635 [label="Enter when"];
subgraph cluster_151 {
color=blue
636 [label="Enter when branch condition "];
637 [label="Access variable R|<local>/q|"];
638 [label="Enter safe call"];
639 [label="Access variable R|/QImplMutable.data|"];
640 [label="Enter safe call"];
641 [label="Access variable R|/MyData.s|"];
642 [label="Enter safe call"];
subgraph cluster_152 {
color=blue
643 [label="Function call arguments enter"];
644 [label="Function call arguments exit"];
}
645 [label="Function call: $subj$.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
646 [label="Exit safe call"];
647 [label="Exit safe call"];
648 [label="Exit safe call"];
649 [label="Const: Null(null)"];
650 [label="Equality operator !="];
651 [label="Exit when branch condition"];
}
652 [label="Synthetic else branch"];
653 [label="Enter when branch result"];
subgraph cluster_153 {
color=blue
654 [label="Enter block"];
655 [label="Access variable R|<local>/q|"];
656 [label="Smart cast: R|<local>/q|"];
657 [label="Access variable R|/QImplMutable.data|"];
658 [label="Smart cast: R|<local>/q|.R|/QImplMutable.data|"];
659 [label="Access variable R|<local>/q|"];
660 [label="Smart cast: R|<local>/q|"];
661 [label="Access variable R|/QImplMutable.data|"];
662 [label="Smart cast: R|<local>/q|.R|/QImplMutable.data|"];
663 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
subgraph cluster_154 {
color=blue
664 [label="Function call arguments enter"];
665 [label="Access variable R|<local>/q|"];
666 [label="Smart cast: R|<local>/q|"];
667 [label="Access variable R|/QImplMutable.data|"];
668 [label="Smart cast: R|<local>/q|.R|/QImplMutable.data|"];
669 [label="Access variable R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|"];
670 [label="Function call arguments exit"];
}
671 [label="Function call: R|<local>/q|.R|/QImplMutable.data|.R|/MyData.s<Inapplicable(UNSTABLE_SMARTCAST): /MyData.s>#|.R|kotlin/Int.inc|()" style="filled" fillcolor=yellow];
672 [label="Exit block"];
}
673 [label="Exit when branch result"];
674 [label="Exit when"];
}
675 [label="Exit block"];
}
676 [label="Exit function test_13" style="filled" fillcolor=red];
}
633 -> {634};
634 -> {635};
635 -> {636};
636 -> {637};
637 -> {638 646};
638 -> {639};
639 -> {640 646};
640 -> {641};
641 -> {642 647};
642 -> {643};
643 -> {644};
644 -> {645};
645 -> {648};
646 -> {647};
647 -> {648};
648 -> {649};
649 -> {650};
650 -> {651};
651 -> {652 653};
652 -> {674};
653 -> {654};
654 -> {655};
655 -> {656};
656 -> {657};
657 -> {658};
658 -> {659};
659 -> {660};
660 -> {661};
661 -> {662};
662 -> {663};
663 -> {664};
664 -> {665};
665 -> {666};
666 -> {667};
667 -> {668};
668 -> {669};
669 -> {670};
670 -> {671};
671 -> {672};
672 -> {673};
673 -> {674};
674 -> {675};
675 -> {676};
subgraph cluster_155 {
color=red
677 [label="Enter function test_14" style="filled" fillcolor=red];
subgraph cluster_156 {
color=blue
678 [label="Enter block"];
subgraph cluster_157 {
color=blue
679 [label="Enter when"];
subgraph cluster_158 {
color=blue
680 [label="Enter when branch condition "];
681 [label="Access variable R|<local>/q|"];
682 [label="Access variable R|/Q.data|"];
683 [label="Const: Null(null)"];
684 [label="Equality operator =="];
685 [label="Exit when branch condition"];
}
686 [label="Synthetic else branch"];
687 [label="Enter when branch result"];
subgraph cluster_159 {
color=blue
688 [label="Enter block"];
689 [label="Access variable R|<local>/q|"];
690 [label="Access variable R|/Q.data|"];
691 [label="Smart cast: R|<local>/q|.R|/Q.data|"];
692 [label="Access variable R|/MyData.s<Inapplicable(UNSAFE_CALL): /MyData.s>#|"];
693 [label="Exit block"];
}
694 [label="Exit when branch result"];
695 [label="Exit when"];
}
696 [label="Exit block"];
}
697 [label="Exit function test_14" style="filled" fillcolor=red];
}
677 -> {678};
678 -> {679};
679 -> {680};
680 -> {681};
681 -> {682};
682 -> {683};
683 -> {684};
684 -> {685};
685 -> {686 687};
686 -> {695};
687 -> {688};
688 -> {689};
689 -> {690};
690 -> {691};
691 -> {692};
692 -> {693};
693 -> {694};
694 -> {695};
695 -> {696};
696 -> {697};
}