[IR] Reorder parameters in IrFactory#createLocalDelegatedProperty

This is to prepare for IrFactory auto-generation (KT-59308).
This commit is contained in:
Sergej Jaskiewicz
2023-06-14 12:44:28 +02:00
committed by Space Team
parent a7c1f53af8
commit 5b8b3644fc
7 changed files with 32 additions and 23 deletions
@@ -1293,13 +1293,13 @@ class Fir2IrDeclarationStorage(
val origin = IrDeclarationOrigin.DEFINED
val irProperty = property.convertWithOffsets { startOffset, endOffset ->
irFactory.createLocalDelegatedProperty(
startOffset,
endOffset,
origin,
IrLocalDelegatedPropertySymbolImpl(),
property.name,
type,
property.isVar
startOffset = startOffset,
endOffset = endOffset,
origin = origin,
name = property.name,
symbol = IrLocalDelegatedPropertySymbolImpl(),
type = type,
isVar = property.isVar
)
}.apply {
parent = irParent