Add more tests for collections implemented by delegation
This commit is contained in:
+166
-14
@@ -1,22 +1,174 @@
|
||||
@kotlin.Metadata
|
||||
public final class SimplePlatform {
|
||||
public final class DGenericCollection {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public class TargetPlatform {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private final @org.jetbrains.annotations.NotNull field componentPlatforms: java.util.Set
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
|
||||
public method add(p0: SimplePlatform): boolean
|
||||
public synthetic method add(p0: java.lang.Object): boolean
|
||||
private synthetic final field $$delegate_0: java.util.Collection
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Collection): void
|
||||
public method add(p0: java.lang.Object): boolean
|
||||
public method addAll(p0: java.util.Collection): boolean
|
||||
public method clear(): void
|
||||
public method contains(@org.jetbrains.annotations.NotNull p0: SimplePlatform): boolean
|
||||
public bridge final method contains(p0: java.lang.Object): boolean
|
||||
public method contains(p0: java.lang.Object): boolean
|
||||
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
|
||||
public method getSize(): int
|
||||
public method isEmpty(): boolean
|
||||
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
|
||||
public method remove(p0: java.lang.Object): boolean
|
||||
public method removeAll(p0: java.util.Collection): boolean
|
||||
public method retainAll(p0: java.util.Collection): boolean
|
||||
public bridge final method size(): int
|
||||
public method toArray(): java.lang.Object[]
|
||||
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericCollectionByList {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.List
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
|
||||
public method add(p0: java.lang.Object): boolean
|
||||
public method addAll(p0: java.util.Collection): boolean
|
||||
public method clear(): void
|
||||
public method contains(p0: java.lang.Object): boolean
|
||||
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
|
||||
public method getSize(): int
|
||||
public method isEmpty(): boolean
|
||||
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
|
||||
public method remove(p0: java.lang.Object): boolean
|
||||
public method removeAll(p0: java.util.Collection): boolean
|
||||
public method retainAll(p0: java.util.Collection): boolean
|
||||
public bridge final method size(): int
|
||||
public method toArray(): java.lang.Object[]
|
||||
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericCollectionBySet {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.Set
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
|
||||
public method add(p0: java.lang.Object): boolean
|
||||
public method addAll(p0: java.util.Collection): boolean
|
||||
public method clear(): void
|
||||
public method contains(p0: java.lang.Object): boolean
|
||||
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
|
||||
public method getSize(): int
|
||||
public method isEmpty(): boolean
|
||||
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
|
||||
public method remove(p0: java.lang.Object): boolean
|
||||
public method removeAll(p0: java.util.Collection): boolean
|
||||
public method retainAll(p0: java.util.Collection): boolean
|
||||
public bridge final method size(): int
|
||||
public method toArray(): java.lang.Object[]
|
||||
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericIterable {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.lang.Iterable
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Iterable): void
|
||||
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericIterator {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.Iterator
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Iterator): void
|
||||
public method hasNext(): boolean
|
||||
public method next(): java.lang.Object
|
||||
public method remove(): void
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericList {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.List
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.List): void
|
||||
public method add(p0: int, p1: java.lang.Object): void
|
||||
public method add(p0: java.lang.Object): boolean
|
||||
public method addAll(p0: int, p1: java.util.Collection): boolean
|
||||
public method addAll(p0: java.util.Collection): boolean
|
||||
public method clear(): void
|
||||
public method contains(p0: java.lang.Object): boolean
|
||||
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
|
||||
public method get(p0: int): java.lang.Object
|
||||
public method getSize(): int
|
||||
public method indexOf(p0: java.lang.Object): int
|
||||
public method isEmpty(): boolean
|
||||
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
|
||||
public method lastIndexOf(p0: java.lang.Object): int
|
||||
public @org.jetbrains.annotations.NotNull method listIterator(): java.util.ListIterator
|
||||
public @org.jetbrains.annotations.NotNull method listIterator(p0: int): java.util.ListIterator
|
||||
public method remove(p0: int): java.lang.Object
|
||||
public method remove(p0: java.lang.Object): boolean
|
||||
public method removeAll(p0: java.util.Collection): boolean
|
||||
public method retainAll(p0: java.util.Collection): boolean
|
||||
public method set(p0: int, p1: java.lang.Object): java.lang.Object
|
||||
public bridge final method size(): int
|
||||
public @org.jetbrains.annotations.NotNull method subList(p0: int, p1: int): java.util.List
|
||||
public method toArray(): java.lang.Object[]
|
||||
public method toArray(p0: java.lang.Object[]): java.lang.Object[]
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericListIterator {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.ListIterator
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.ListIterator): void
|
||||
public method add(p0: java.lang.Object): void
|
||||
public method hasNext(): boolean
|
||||
public method hasPrevious(): boolean
|
||||
public method next(): java.lang.Object
|
||||
public method nextIndex(): int
|
||||
public method previous(): java.lang.Object
|
||||
public method previousIndex(): int
|
||||
public method remove(): void
|
||||
public method set(p0: java.lang.Object): void
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericMap {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.Map
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map): void
|
||||
public method clear(): void
|
||||
public method containsKey(p0: java.lang.Object): boolean
|
||||
public method containsValue(p0: java.lang.Object): boolean
|
||||
public bridge final method entrySet(): java.util.Set
|
||||
public @org.jetbrains.annotations.Nullable method get(p0: java.lang.Object): java.lang.Object
|
||||
public @org.jetbrains.annotations.NotNull method getEntries(): java.util.Set
|
||||
public @org.jetbrains.annotations.NotNull method getKeys(): java.util.Set
|
||||
public method getSize(): int
|
||||
public @org.jetbrains.annotations.NotNull method getValues(): java.util.Collection
|
||||
public method isEmpty(): boolean
|
||||
public bridge final method keySet(): java.util.Set
|
||||
public method put(p0: java.lang.Object, p1: java.lang.Object): java.lang.Object
|
||||
public method putAll(p0: java.util.Map): void
|
||||
public method remove(p0: java.lang.Object): java.lang.Object
|
||||
public bridge final method size(): int
|
||||
public bridge final method values(): java.util.Collection
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericMapEntry {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.Map$Entry
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Map$Entry): void
|
||||
public method getKey(): java.lang.Object
|
||||
public method getValue(): java.lang.Object
|
||||
public method setValue(p0: java.lang.Object): java.lang.Object
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class DGenericSet {
|
||||
// source: 'collectionByDelegation.kt'
|
||||
private synthetic final field $$delegate_0: java.util.Set
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.util.Set): void
|
||||
public method add(p0: java.lang.Object): boolean
|
||||
public method addAll(p0: java.util.Collection): boolean
|
||||
public method clear(): void
|
||||
public method contains(p0: java.lang.Object): boolean
|
||||
public method containsAll(@org.jetbrains.annotations.NotNull p0: java.util.Collection): boolean
|
||||
public final @org.jetbrains.annotations.NotNull method getComponentPlatforms(): java.util.Set
|
||||
public method getSize(): int
|
||||
public method isEmpty(): boolean
|
||||
public @org.jetbrains.annotations.NotNull method iterator(): java.util.Iterator
|
||||
|
||||
Reference in New Issue
Block a user