[FIR] CFG: drop redundant edges
Edges from class to its functions and nested classes are redundant and lead to extra resolution work in lazy resolve mode ^KT-59600 Fixed
This commit is contained in:
committed by
Space Team
parent
df28bd1d79
commit
09ca335b7e
+3
-4
@@ -15,14 +15,13 @@ digraph smartCastInInit_kt {
|
||||
2 [label="Enter class S" style="filled" fillcolor=red];
|
||||
3 [label="Exit class S" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3} [color=green];
|
||||
|
||||
subgraph cluster_2 {
|
||||
color=blue
|
||||
color=red
|
||||
4 [label="Enter function foo" style="filled" fillcolor=red];
|
||||
5 [label="Exit function foo" style="filled" fillcolor=red];
|
||||
}
|
||||
2 -> {3} [color=green];
|
||||
3 -> {4} [color=green];
|
||||
3 -> {4} [style=dashed];
|
||||
4 -> {5};
|
||||
|
||||
subgraph cluster_3 {
|
||||
|
||||
Reference in New Issue
Block a user