[FIR] Complete data-flow analysis for all control-flow graph nodes

There are conditions where the data-flow analysis for a control-flow
graph node is delayed. Make sure that when completing a graph, all nodes
within the graph have completed their data-flow analysis.

^KT-61794 Fixed
This commit is contained in:
Brian Norman
2023-09-22 12:59:25 -05:00
committed by Space Team
parent f2fb237212
commit 23bdfd226f
9 changed files with 63 additions and 18 deletions
@@ -0,0 +1,9 @@
// FIR_IDENTICAL
// ISSUE: KT-61794
private fun createStubFunction(expression: String?): String? {
val tmp = expression?.let {
it
} ?: return null
return tmp
}