[IR] update testdata: support for IrDelegatingConstructorCall

This commit is contained in:
Zalim Bashorov
2020-11-06 02:24:57 +03:00
committed by teamcityserver
parent 84d6e43590
commit b518c19b38
198 changed files with 393 additions and 390 deletions
@@ -7,7 +7,7 @@ interface IFoo {
class K1 : JFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*JFoo*/()
/* InstanceInitializerCall */
}
@@ -20,7 +20,7 @@ class K1 : JFoo {
class K2 : JFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*JFoo*/()
/* InstanceInitializerCall */
}
@@ -36,7 +36,7 @@ class K2 : JFoo {
class K3 : JUnrelatedFoo, IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*JUnrelatedFoo*/()
/* InstanceInitializerCall */
}
@@ -49,7 +49,7 @@ class K3 : JUnrelatedFoo, IFoo {
class K4 : JUnrelatedFoo, IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*JUnrelatedFoo*/()
/* InstanceInitializerCall */
}
@@ -65,7 +65,7 @@ class K4 : JUnrelatedFoo, IFoo {
class TestJFoo : IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*Any*/()
/* InstanceInitializerCall */
}
@@ -82,7 +82,7 @@ class TestJFoo : IFoo {
class TestK1 : IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*Any*/()
/* InstanceInitializerCall */
}
@@ -99,7 +99,7 @@ class TestK1 : IFoo {
class TestK2 : IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*Any*/()
/* InstanceInitializerCall */
}
@@ -116,7 +116,7 @@ class TestK2 : IFoo {
class TestK3 : IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*Any*/()
/* InstanceInitializerCall */
}
@@ -133,7 +133,7 @@ class TestK3 : IFoo {
class TestK4 : IFoo {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
super/*Any*/()
/* InstanceInitializerCall */
}