23bdfd226f
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
10 lines
181 B
Kotlin
Vendored
10 lines
181 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-61794
|
|
|
|
private fun createStubFunction(expression: String?): String? {
|
|
val tmp = expression?.let {
|
|
it
|
|
} ?: return null
|
|
return tmp
|
|
}
|