IR: make IrTypeAlias.expandedType mutable

This commit is contained in:
Georgy Bronnikov
2020-09-03 16:26:55 +03:00
parent 78fc690f29
commit a3763e8276
5 changed files with 20 additions and 6 deletions
@@ -20,7 +20,7 @@ class IrTypeAliasImpl(
override val symbol: IrTypeAliasSymbol,
override val name: Name,
override var visibility: DescriptorVisibility,
override val expandedType: IrType,
override var expandedType: IrType,
override val isActual: Boolean,
override var origin: IrDeclarationOrigin
) : IrTypeAlias() {