From 8617809528bb636f0ef53a0032da9425c89e90dc Mon Sep 17 00:00:00 2001 From: Ivan Kylchik Date: Tue, 2 Feb 2021 15:59:43 +0300 Subject: [PATCH] Rename `expression` value parameter to `declaration` --- .../kotlin/ir/interpreter/IrInterpreter.kt | 14 +++++++------- .../jetbrains/kotlin/ir/interpreter/stack/Stack.kt | 5 ----- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/compiler/ir/ir.interpreter/src/org/jetbrains/kotlin/ir/interpreter/IrInterpreter.kt b/compiler/ir/ir.interpreter/src/org/jetbrains/kotlin/ir/interpreter/IrInterpreter.kt index e68eaa71ba9..98e05f189b5 100644 --- a/compiler/ir/ir.interpreter/src/org/jetbrains/kotlin/ir/interpreter/IrInterpreter.kt +++ b/compiler/ir/ir.interpreter/src/org/jetbrains/kotlin/ir/interpreter/IrInterpreter.kt @@ -104,7 +104,7 @@ class IrInterpreter(val irBuiltIns: IrBuiltIns, private val bodyMap: Map interpretCall(this) is IrConstructorCall -> interpretConstructorCall(this) is IrEnumConstructorCall -> interpretEnumConstructorCall(this) - is IrDelegatingConstructorCall -> interpretDelegatedConstructorCall(this) + is IrDelegatingConstructorCall -> interpretDelegatingConstructorCall(this) is IrInstanceInitializerCall -> interpretInstanceInitializerCall(this) is IrBody -> interpretBody(this) is IrBlock -> interpretBlock(this) @@ -442,7 +442,7 @@ class IrInterpreter(val irBuiltIns: IrBuiltIns, private val bodyMap: Map