Remove fake override flag for IrFields
(cherry picked from commit 63e421b12c5eb29fc8165bb2a33a020d1394915d)
This commit is contained in:
committed by
Vasily Levchenko
parent
393025f2b5
commit
b3cce3a8ac
-1
@@ -78,7 +78,6 @@ internal class EnumSpecialDeclarationsFactory(val context: Context) {
|
||||
isFinal = true,
|
||||
isExternal = false,
|
||||
isStatic = false,
|
||||
isFakeOverride = false
|
||||
).apply {
|
||||
it.bind(this)
|
||||
parent = implObject
|
||||
|
||||
-1
@@ -395,7 +395,6 @@ private class InlineClassTransformer(private val context: Context) : IrBuildingT
|
||||
isFinal = true,
|
||||
isExternal = false,
|
||||
isStatic = false,
|
||||
isFakeOverride = false
|
||||
)
|
||||
irField.parent = declaration
|
||||
|
||||
|
||||
-1
@@ -97,7 +97,6 @@ internal class PropertyDelegationLowering(val context: Context) : FileLoweringPa
|
||||
isFinal = true,
|
||||
isExternal = false,
|
||||
isStatic = true,
|
||||
isFakeOverride = false
|
||||
).apply {
|
||||
it.bind(this)
|
||||
parent = irFile
|
||||
|
||||
@@ -79,7 +79,6 @@ internal fun IrFile.addTopLevelInitializer(expression: IrExpression, context: Ko
|
||||
isFinal = true,
|
||||
isExternal = false,
|
||||
isStatic = true,
|
||||
isFakeOverride = false
|
||||
).apply {
|
||||
descriptor.bind(this)
|
||||
|
||||
@@ -364,7 +363,6 @@ fun createField(
|
||||
!isMutable,
|
||||
false,
|
||||
false,
|
||||
false
|
||||
).apply {
|
||||
it.bind(this)
|
||||
owner.declarations += this
|
||||
|
||||
Reference in New Issue
Block a user