Skip to content

Commit

Permalink
[K/JS] Fix case with boxing/unboxing inside the BlockDecomposerLoweri…
Browse files Browse the repository at this point in the history
…ng ^KT-63808 Fixed
  • Loading branch information
JSMonk authored and qodana-bot committed Dec 20, 2023
1 parent 316df8d commit 87c8aa1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ class BlockDecomposerTransformer(
lastIntrinsicCall = JsIrBuilder.buildCall(saveToTmp.symbol, saveToTmp.type, saveToTmp.typeArguments.filterNotNull())
rootIntrinsicCall = lastIntrinsicCall
} else {
val nextCall = JsIrBuilder.buildCall(saveToTmp.symbol)
val nextCall = JsIrBuilder.buildCall(saveToTmp.symbol, saveToTmp.type, saveToTmp.typeArguments.filterNotNull())
lastIntrinsicCall.putValueArgument(0, nextCall)
lastIntrinsicCall = nextCall
}
Expand Down

0 comments on commit 87c8aa1

Please sign in to comment.