[IR] update testdata: super and receiver for field accesses

This commit is contained in:
Zalim Bashorov
2020-11-10 03:10:13 +03:00
committed by teamcityserver
parent 029ee6f2e7
commit a6b408978f
50 changed files with 294 additions and 294 deletions
@@ -56,7 +56,7 @@ class TestJFoo : IFoo {
private /*final field*/ val $$delegate_0: JFoo = JFoo()
override fun foo(): String {
return #$$delegate_0.foo() /*!! String */
return <this>.#$$delegate_0.foo() /*!! String */
}
}
@@ -70,7 +70,7 @@ class TestK1 : IFoo {
private /*final field*/ val $$delegate_0: K1 = K1()
override fun foo(): String {
return #$$delegate_0.foo() /*!! String */
return <this>.#$$delegate_0.foo() /*!! String */
}
}
@@ -84,7 +84,7 @@ class TestK2 : IFoo {
private /*final field*/ val $$delegate_0: K2 = K2()
override fun foo(): String {
return #$$delegate_0.foo()
return <this>.#$$delegate_0.foo()
}
}
@@ -98,7 +98,7 @@ class TestK3 : IFoo {
private /*final field*/ val $$delegate_0: K3 = K3()
override fun foo(): String {
return #$$delegate_0.foo()
return <this>.#$$delegate_0.foo()
}
}
@@ -112,7 +112,7 @@ class TestK4 : IFoo {
private /*final field*/ val $$delegate_0: K4 = K4()
override fun foo(): String {
return #$$delegate_0.foo() /*!! String */
return <this>.#$$delegate_0.foo() /*!! String */
}
}