[IR] Remove files parameter from IrModuleFragmentImpl

This commit removes the default parameter in constructor,
as well as custom logic in this class, which would
make it harder for its subsequent auto-generation.

^KT-65773 In Progress
This commit is contained in:
Wojciech Litewka
2024-02-13 21:41:27 +01:00
committed by Space Team
parent 83bc12949b
commit 2a5b4ae652
6 changed files with 13 additions and 13 deletions
@@ -96,7 +96,7 @@ abstract class BasicIrModuleDeserializer(
error("No file for ${idSig.topLevelSignature()} (@ $idSig) in module $moduleDescriptor")
}
override val moduleFragment: IrModuleFragment = IrModuleFragmentImpl(moduleDescriptor, linker.builtIns, emptyList())
override val moduleFragment: IrModuleFragment = IrModuleFragmentImpl(moduleDescriptor, linker.builtIns)
private fun deserializeIrFile(
fileProto: ProtoFile, file: IrFile, fileReader: IrLibraryFileFromBytes,