Change String argument of property delegate method to PropertyMetadata

This commit is contained in:
Natalia.Ukhorskaya
2013-04-25 18:41:35 +04:00
parent 6e2584d0de
commit b9e5227b58
63 changed files with 174 additions and 83 deletions
+9
View File
@@ -1356,6 +1356,15 @@ public trait Progression</*0*/ N : jet.Any> : jet.Iterable<N> {
public abstract override /*1*/ /*fake_override*/ fun iterator(): jet.Iterator<N>
}
public trait PropertyMetadata {
public abstract val name: jet.String
}
public final class PropertyMetadataImpl : jet.PropertyMetadata {
public constructor PropertyMetadataImpl(/*0*/ name: jet.String)
public open override /*1*/ val name: jet.String
}
public trait Range</*0*/ in T : jet.Comparable<T>> {
public abstract val end: T
public abstract val start: T