[Test] Get rid of some properties in IrBackendInput

`fir2IrComponents`, `irActualizerResult` and `dependentIrModuleFragments`
  were used in `IrActualizerAndPluginsFacade`, which was removed in the
  previous commit
This commit is contained in:
Dmitriy Novozhilov
2023-11-21 13:14:57 +02:00
committed by Space Team
parent 1303a33bea
commit 075010b14e
11 changed files with 6 additions and 63 deletions
@@ -74,7 +74,7 @@ class FirJsKlibBackendFacade(
abiVersion = KotlinAbiVersion.CURRENT, // TODO get from test file data
jsOutputName = null
) {
inputArtifact.serializeSingleFile(it, inputArtifact.irActualizerResult)
inputArtifact.serializeSingleFile(it, TODO("Will be fixed in the next commit"))
}
}
@@ -63,7 +63,7 @@ class JsKlibBackendFacade(
abiVersion = KotlinAbiVersion.CURRENT, // TODO get from test file data
jsOutputName = null
) {
inputArtifact.serializeSingleFile(it, inputArtifact.irActualizerResult)
inputArtifact.serializeSingleFile(it, TODO("Will be fixed in the next commit"))
}
}