[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
+3 -3
View File
@@ -54,7 +54,7 @@ class TestInitVarWithCustomSetter {
field = 0
get
set(value: Int) {
#x = value
<this>.#x = value
}
}
@@ -63,7 +63,7 @@ class TestInitVarWithCustomSetterWithExplicitCtor {
var x: Int
get
set(value: Int) {
#x = value
<this>.#x = value
}
init {
@@ -82,7 +82,7 @@ class TestInitVarWithCustomSetterInCtor {
var x: Int
get
set(value: Int) {
#x = value
<this>.#x = value
}
constructor() {