From 6be554e76534c155859d7f2a858439973ec32d7a Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Fri, 27 Mar 2020 14:49:13 +0300 Subject: [PATCH] [FIR] Rename `ControlFlowGraph.owner` to `declaration` --- .../jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraph.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraph.kt b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraph.kt index 369b5aea871..e37bcd2f166 100644 --- a/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraph.kt +++ b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/cfg/ControlFlowGraph.kt @@ -14,7 +14,7 @@ import org.jetbrains.kotlin.fir.expressions.* import org.jetbrains.kotlin.fir.visitors.FirTransformer import org.jetbrains.kotlin.fir.visitors.FirVisitor -class ControlFlowGraph(val owner: FirDeclaration?, val name: String, val kind: Kind) { +class ControlFlowGraph(val declaration: FirDeclaration?, val name: String, val kind: Kind) { private val _nodes: MutableList> = mutableListOf() val nodes: List> get() = _nodes