IR serialization: IrField.isFakeOverride
This commit is contained in:
+4
-3
@@ -1164,9 +1164,10 @@ abstract class IrFileDeserializer(
|
|||||||
deserializeName(proto.name),
|
deserializeName(proto.name),
|
||||||
type,
|
type,
|
||||||
deserializeVisibility(proto.visibility),
|
deserializeVisibility(proto.visibility),
|
||||||
proto.isFinal,
|
isFinal = proto.isFinal,
|
||||||
proto.isExternal,
|
isExternal = proto.isExternal,
|
||||||
proto.isStatic
|
isStatic = proto.isStatic,
|
||||||
|
isFakeOverride = origin == IrDeclarationOrigin.FAKE_OVERRIDE
|
||||||
)
|
)
|
||||||
}.usingParent {
|
}.usingParent {
|
||||||
if (proto.hasInitializer())
|
if (proto.hasInitializer())
|
||||||
|
|||||||
Reference in New Issue
Block a user