PSI2IR: copy isPropertyWithPlatformField to GeneratorExtensions

This commit is contained in:
pyos
2019-11-25 15:00:34 +01:00
committed by Alexander Udalov
parent 3cae90dd26
commit a950df3c80
5 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ open class B : A() {
open class C : B() {
fun test(): String {
return super.publicField + super.internalField + super.protectedfield
return publicField + super.internalField + super.protectedfield
}
}
@@ -11,7 +11,7 @@ open class B : A()
open class C : B() {
fun test(): String {
return super.publicField + super.internalField + super.protectedfield
return publicField + super.internalField + super.protectedfield
}
}