[IR] Reorder parameters in IrFactory#createLocalDelegatedProperty
This is to prepare for IrFactory auto-generation (KT-59308).
This commit is contained in:
committed by
Space Team
parent
a7c1f53af8
commit
5b8b3644fc
+7
-7
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user