[IR] Fixed wrong IrCall type (to fix IR validation)
This commit is contained in:
+1
-1
@@ -355,7 +355,7 @@ open class DefaultParameterInjector(
|
|||||||
return visitFunctionAccessExpression(expression) {
|
return visitFunctionAccessExpression(expression) {
|
||||||
with(expression) {
|
with(expression) {
|
||||||
IrCallImpl(
|
IrCallImpl(
|
||||||
startOffset, endOffset, type, it as IrSimpleFunctionSymbol,
|
startOffset, endOffset, (it as IrSimpleFunctionSymbol).owner.returnType, it,
|
||||||
typeArgumentsCount = typeArgumentsCount,
|
typeArgumentsCount = typeArgumentsCount,
|
||||||
valueArgumentsCount = it.owner.valueParameters.size,
|
valueArgumentsCount = it.owner.valueParameters.size,
|
||||||
origin = LoweredStatementOrigins.DEFAULT_DISPATCH_CALL,
|
origin = LoweredStatementOrigins.DEFAULT_DISPATCH_CALL,
|
||||||
|
|||||||
Reference in New Issue
Block a user