[KLIB] Support isHidden flag in deserialization

This commit is contained in:
Roman Artemev
2020-09-09 16:23:11 +03:00
parent 83d6255294
commit 8209b70a2f
@@ -1008,7 +1008,8 @@ abstract class IrFileDeserializer(
deserializeIrType(nameAndType.typeIndex),
if (proto.hasVarargElementType()) deserializeIrType(proto.varargElementType) else null,
flags.isCrossInline,
flags.isNoInline
flags.isNoInline,
flags.isHidden
).apply {
if (proto.hasDefaultValue())
defaultValue = irFactory.createExpressionBody(deserializeExpressionBody(proto.defaultValue))