[IR] Make IrTypeOperatorCall copyable

^KT-45655 fixed
This commit is contained in:
Ilya Goncharov
2021-03-23 19:11:52 +03:00
committed by TeamCityServer
parent 2a5153f0fd
commit 47f1a8a0bb
11 changed files with 71 additions and 2 deletions
@@ -81,7 +81,7 @@ class MultipleCatchesLowering(private val context: JsIrBackendContext) : BodyLow
}
val catchBody = catch.result.transform(object : IrElementTransformer<IrValueSymbol> {
override fun visitGetValue(expression: IrGetValue, data: IrValueSymbol) =
override fun visitGetValue(expression: IrGetValue, data: IrValueSymbol): IrExpression =
if (expression.symbol == data)
castedPendingException()
else