[FIR] Add checker for uninitialized properties
This commit is contained in:
+8
-8
@@ -5,24 +5,24 @@ digraph elvis_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
0 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
1 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
0 [label="Enter class A" style="filled" fillcolor=red];
|
||||
1 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1};
|
||||
0 -> {1} [color=green];
|
||||
|
||||
subgraph cluster_1 {
|
||||
color=red
|
||||
2 [label="Enter function getter" style="filled" fillcolor=red];
|
||||
3 [label="Exit function getter" style="filled" fillcolor=red];
|
||||
2 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
3 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3};
|
||||
|
||||
subgraph cluster_2 {
|
||||
color=red
|
||||
4 [label="Enter class A" style="filled" fillcolor=red];
|
||||
5 [label="Exit class A" style="filled" fillcolor=red];
|
||||
4 [label="Enter function getter" style="filled" fillcolor=red];
|
||||
5 [label="Exit function getter" style="filled" fillcolor=red];
|
||||
}
|
||||
4 -> {5} [color=green];
|
||||
4 -> {5};
|
||||
|
||||
subgraph cluster_3 {
|
||||
color=red
|
||||
|
||||
+18
-18
@@ -148,45 +148,45 @@ digraph returns_kt {
|
||||
|
||||
subgraph cluster_14 {
|
||||
color=red
|
||||
50 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
51 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
50 [label="Enter class A" style="filled" fillcolor=red];
|
||||
51 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
50 -> {51};
|
||||
50 -> {51} [color=green];
|
||||
|
||||
subgraph cluster_15 {
|
||||
color=red
|
||||
52 [label="Enter class A" style="filled" fillcolor=red];
|
||||
53 [label="Exit class A" style="filled" fillcolor=red];
|
||||
52 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
53 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
52 -> {53} [color=green];
|
||||
52 -> {53};
|
||||
|
||||
subgraph cluster_16 {
|
||||
color=red
|
||||
54 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
55 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
54 [label="Enter class B" style="filled" fillcolor=red];
|
||||
55 [label="Exit class B" style="filled" fillcolor=red];
|
||||
}
|
||||
54 -> {55};
|
||||
54 -> {55} [color=green];
|
||||
|
||||
subgraph cluster_17 {
|
||||
color=red
|
||||
56 [label="Enter class B" style="filled" fillcolor=red];
|
||||
57 [label="Exit class B" style="filled" fillcolor=red];
|
||||
56 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
57 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
}
|
||||
56 -> {57} [color=green];
|
||||
56 -> {57};
|
||||
|
||||
subgraph cluster_18 {
|
||||
color=red
|
||||
58 [label="Enter function baz" style="filled" fillcolor=red];
|
||||
59 [label="Exit function baz" style="filled" fillcolor=red];
|
||||
58 [label="Enter class C" style="filled" fillcolor=red];
|
||||
59 [label="Exit class C" style="filled" fillcolor=red];
|
||||
}
|
||||
58 -> {59};
|
||||
58 -> {59} [color=green];
|
||||
|
||||
subgraph cluster_19 {
|
||||
color=red
|
||||
60 [label="Enter class C" style="filled" fillcolor=red];
|
||||
61 [label="Exit class C" style="filled" fillcolor=red];
|
||||
60 [label="Enter function baz" style="filled" fillcolor=red];
|
||||
61 [label="Exit function baz" style="filled" fillcolor=red];
|
||||
}
|
||||
60 -> {61} [color=green];
|
||||
60 -> {61};
|
||||
|
||||
subgraph cluster_20 {
|
||||
color=red
|
||||
|
||||
Vendored
+6
-6
@@ -5,17 +5,17 @@ digraph smartcastFromArgument_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
0 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
1 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
0 [label="Enter class A" style="filled" fillcolor=red];
|
||||
1 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1};
|
||||
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 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
3 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3} [color=green];
|
||||
2 -> {3};
|
||||
|
||||
subgraph cluster_2 {
|
||||
color=red
|
||||
|
||||
+12
-12
@@ -5,31 +5,31 @@ digraph when_kt {
|
||||
|
||||
subgraph cluster_0 {
|
||||
color=red
|
||||
0 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
1 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
0 [label="Enter class A" style="filled" fillcolor=red];
|
||||
1 [label="Exit class A" style="filled" fillcolor=red];
|
||||
}
|
||||
0 -> {1};
|
||||
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 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
3 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3} [color=green];
|
||||
2 -> {3};
|
||||
|
||||
subgraph cluster_2 {
|
||||
color=red
|
||||
4 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
5 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
4 [label="Enter class B" style="filled" fillcolor=red];
|
||||
5 [label="Exit class B" style="filled" fillcolor=red];
|
||||
}
|
||||
4 -> {5};
|
||||
4 -> {5} [color=green];
|
||||
|
||||
subgraph cluster_3 {
|
||||
color=red
|
||||
6 [label="Enter class B" style="filled" fillcolor=red];
|
||||
7 [label="Exit class B" style="filled" fillcolor=red];
|
||||
6 [label="Enter function bar" style="filled" fillcolor=red];
|
||||
7 [label="Exit function bar" style="filled" fillcolor=red];
|
||||
}
|
||||
6 -> {7} [color=green];
|
||||
6 -> {7};
|
||||
|
||||
subgraph cluster_4 {
|
||||
color=red
|
||||
|
||||
Reference in New Issue
Block a user