Deprecate PropertyMetadata, use KProperty<*> for delegated properties instead
This commit is contained in:
+1
-9
@@ -1080,19 +1080,11 @@ public interface Progression</*0*/ out N : kotlin.Any> : kotlin.Iterable<N> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun iterator(): kotlin.Iterator<N>
|
||||
}
|
||||
|
||||
public interface PropertyMetadata {
|
||||
@kotlin.Deprecated(message = "Please use KProperty instead.", replaceWith = kotlin.ReplaceWith(expression = "KProperty<*>", imports = {"kotlin.reflect.KProperty"})) public interface PropertyMetadata {
|
||||
public abstract val name: kotlin.String
|
||||
public abstract fun <get-name>(): kotlin.String
|
||||
}
|
||||
|
||||
@kotlin.data() public final class PropertyMetadataImpl : kotlin.PropertyMetadata {
|
||||
/*primary*/ public constructor PropertyMetadataImpl(/*0*/ name: kotlin.String)
|
||||
public open override /*1*/ val name: kotlin.String
|
||||
public open override /*1*/ fun <get-name>(): kotlin.String
|
||||
public final operator /*synthesized*/ fun component1(): kotlin.String
|
||||
public final /*synthesized*/ fun copy(/*0*/ name: kotlin.String = ...): kotlin.PropertyMetadataImpl
|
||||
}
|
||||
|
||||
public interface Range</*0*/ T : kotlin.Comparable<T>> {
|
||||
public abstract val end: T
|
||||
public abstract fun <get-end>(): T
|
||||
|
||||
Reference in New Issue
Block a user