[IR] update testdata after using maxBlankLines=1 for Printer

This commit is contained in:
Zalim Bashorov
2020-11-06 02:47:33 +03:00
committed by teamcityserver
parent 6e318893f6
commit 602f0ddbc8
243 changed files with 0 additions and 1789 deletions
@@ -1,7 +1,5 @@
interface IrType {
}
interface TypeRemapper {
@@ -9,8 +7,6 @@ interface TypeRemapper {
abstract fun remapType(type: IrType): IrType
abstract fun leaveScope()
}
interface IrTypeParametersContainer : IrDeclaration, IrDeclarationParent {
@@ -18,30 +14,20 @@ interface IrTypeParametersContainer : IrDeclaration, IrDeclarationParent {
abstract get
abstract set
}
interface IrDeclaration {
}
interface IrTypeParameter : IrDeclaration {
abstract val superTypes: MutableList<IrType>
abstract get
}
interface IrDeclarationParent {
}
class DeepCopyIrTreeWithSymbols {
@@ -83,9 +69,6 @@ class DeepCopyIrTreeWithSymbols {
)
}
}
inline fun <T : Any?> TypeRemapper.withinScope(irTypeParametersContainer: IrTypeParametersContainer, fn: Function0<T>): T {