[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
-5
@@ -728,11 +728,13 @@ class IrDeclarationDeserializer(
|
||||
val nameAndType = BinaryNameAndType.decode(proto.nameType)
|
||||
|
||||
val prop = irFactory.createLocalDelegatedProperty(
|
||||
startOffset, endOffset, origin,
|
||||
symbol.checkSymbolType(fallbackSymbolKind = null),
|
||||
deserializeName(nameAndType.nameIndex),
|
||||
deserializeIrType(nameAndType.typeIndex),
|
||||
flags.isVar
|
||||
startOffset = startOffset,
|
||||
endOffset = endOffset,
|
||||
origin = origin,
|
||||
name = deserializeName(nameAndType.nameIndex),
|
||||
symbol = symbol.checkSymbolType(fallbackSymbolKind = null),
|
||||
type = deserializeIrType(nameAndType.typeIndex),
|
||||
isVar = flags.isVar,
|
||||
)
|
||||
|
||||
prop.apply {
|
||||
|
||||
Reference in New Issue
Block a user