Change order of arguments in IrValueParameter.copyTo
This commit is contained in:
@@ -155,10 +155,10 @@ val IrFunctionReference.isSuspend get() = (symbol.owner as? IrSimpleFunction)?.i
|
|||||||
|
|
||||||
fun IrValueParameter.copyTo(
|
fun IrValueParameter.copyTo(
|
||||||
irFunction: IrFunction,
|
irFunction: IrFunction,
|
||||||
|
origin: IrDeclarationOrigin = this.origin,
|
||||||
index: Int = this.index,
|
index: Int = this.index,
|
||||||
startOffset: Int = this.startOffset,
|
startOffset: Int = this.startOffset,
|
||||||
endOffset: Int = this.endOffset,
|
endOffset: Int = this.endOffset,
|
||||||
origin: IrDeclarationOrigin = this.origin,
|
|
||||||
name: Name = this.name,
|
name: Name = this.name,
|
||||||
type: IrType = this.type.remapTypeParameters(this.parent as IrTypeParametersContainer, irFunction),
|
type: IrType = this.type.remapTypeParameters(this.parent as IrTypeParametersContainer, irFunction),
|
||||||
varargElementType: IrType? = this.varargElementType
|
varargElementType: IrType? = this.varargElementType
|
||||||
|
|||||||
Reference in New Issue
Block a user