[FIR] Don't report DEPRECATION on self-access in delegated property

#KT-60682
This commit is contained in:
Kirill Rakhman
2023-08-25 13:28:13 +02:00
committed by Space Team
parent 411210b520
commit 21f8ba1706
4 changed files with 70 additions and 1 deletions
@@ -13,8 +13,27 @@ public final class Delegate {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class Delegate2 {
public constructor Delegate2()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public final operator fun getValue(/*0*/ instance: kotlin.Any, /*1*/ property: kotlin.reflect.KProperty<*>): kotlin.Int
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public final operator fun setValue(/*0*/ instance: kotlin.Any, /*1*/ property: kotlin.reflect.KProperty<*>, /*2*/ value: kotlin.Int): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class DelegateProvider {
public constructor DelegateProvider()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public final operator fun provideDelegate(/*0*/ instance: kotlin.Any, /*1*/ property: kotlin.reflect.KProperty<*>): Delegate2
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public final class PropertyHolder {
public constructor PropertyHolder()
@kotlin.Deprecated(message = "text") public final var deprecatedDelegated: kotlin.Int
@kotlin.Deprecated(message = "text") public final val deprecatedDelegated2: kotlin.Int
@kotlin.Deprecated(message = "text") public final var name: kotlin.String
@get:kotlin.Deprecated(message = "val-getter") public final val test1: kotlin.String = ""
@get:kotlin.Deprecated(message = "var-getter") @set:kotlin.Deprecated(message = "var-setter") public final var test2: kotlin.String