Fix testData in compiler: add collections and ranges package to fq-names.
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
package
|
||||
|
||||
package b {
|
||||
public fun bar(/*0*/ l: kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
public fun bar(/*0*/ l: kotlin.collections.List<kotlin.Int>): kotlin.collections.List<kotlin.Int>
|
||||
public fun test(/*0*/ a: b.A): kotlin.Unit
|
||||
|
||||
public final class A {
|
||||
public constructor A()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public final operator fun </*0*/ T> get(/*0*/ i: kotlin.Int): kotlin.List<T>
|
||||
public final operator fun </*0*/ T> get(/*0*/ i: kotlin.Int): kotlin.collections.List<T>
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ package h {
|
||||
public fun test1(/*0*/ z: h.Z): kotlin.Unit
|
||||
public fun test2(/*0*/ z: h.Z): kotlin.Unit
|
||||
public fun test3(/*0*/ z: h.Z): kotlin.Unit
|
||||
public fun test4(/*0*/ collection: kotlin.Collection<h.A<*>>): kotlin.Unit
|
||||
public fun test4(/*0*/ collection: kotlin.collections.Collection<h.A<*>>): kotlin.Unit
|
||||
public fun test5(): kotlin.Unit
|
||||
public fun </*0*/ T> toBeOrNot(): kotlin.Boolean
|
||||
public fun use(/*0*/ vararg a: kotlin.Any? /*kotlin.Array<out kotlin.Any?>*/): kotlin.Array<out kotlin.Any?>
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
package
|
||||
|
||||
public fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
public fun test(/*0*/ map: kotlin.MutableMap<kotlin.Int, kotlin.Int>, /*1*/ t: kotlin.Int): kotlin.Unit
|
||||
public operator fun </*0*/ K, /*1*/ V> kotlin.MutableMap<K, V>.set(/*0*/ key: K, /*1*/ value: V): V?
|
||||
public fun test(/*0*/ map: kotlin.collections.MutableMap<kotlin.Int, kotlin.Int>, /*1*/ t: kotlin.Int): kotlin.Unit
|
||||
public operator fun </*0*/ K, /*1*/ V> kotlin.collections.MutableMap<K, V>.set(/*0*/ key: K, /*1*/ value: V): V?
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
public fun </*0*/ T> kotlin.Iterable<T>.withIndices(): kotlin.List<a.Pair<kotlin.Int, T>>
|
||||
public fun </*0*/ T> kotlin.collections.Iterable<T>.withIndices(): kotlin.collections.List<a.Pair<kotlin.Int, T>>
|
||||
|
||||
public final class Pair</*0*/ out A, /*1*/ out B> {
|
||||
public constructor Pair</*0*/ out A, /*1*/ out B>(/*0*/ first: A, /*1*/ second: B)
|
||||
|
||||
+2
-2
@@ -2,10 +2,10 @@ package
|
||||
|
||||
public final class A</*0*/ T> {
|
||||
public constructor A</*0*/ T>()
|
||||
public final fun </*0*/ U> bar(/*0*/ s: U): kotlin.List<T>
|
||||
public final fun </*0*/ U> bar(/*0*/ s: U): kotlin.collections.List<T>
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public final fun </*0*/ S> foo(/*0*/ s: S): S
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public final fun test(): kotlin.List<T>
|
||||
public final fun test(): kotlin.collections.List<T>
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
@@ -2,9 +2,9 @@ package
|
||||
|
||||
package b {
|
||||
public fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
public fun </*0*/ K, /*1*/ V> mapOf(/*0*/ vararg values: b.Pair<K, V> /*kotlin.Array<out b.Pair<K, V>>*/): kotlin.Map<K, V>
|
||||
public fun </*0*/ K, /*1*/ V> mapOf(/*0*/ vararg values: b.Pair<K, V> /*kotlin.Array<out b.Pair<K, V>>*/): kotlin.collections.Map<K, V>
|
||||
public fun println(/*0*/ message: kotlin.Any?): kotlin.Unit
|
||||
public fun </*0*/ T> query(/*0*/ t: T, /*1*/ args: kotlin.Map<kotlin.String, kotlin.Any>): kotlin.List<T>
|
||||
public fun </*0*/ T> query(/*0*/ t: T, /*1*/ args: kotlin.collections.Map<kotlin.String, kotlin.Any>): kotlin.collections.List<T>
|
||||
public fun test(/*0*/ pair: b.Pair<kotlin.String, kotlin.Int>): kotlin.Unit
|
||||
public fun test(/*0*/ t: kotlin.String): kotlin.Unit
|
||||
public infix fun </*0*/ A, /*1*/ B> A.to(/*0*/ that: B): b.Pair<A, B>
|
||||
|
||||
+2
-2
@@ -3,8 +3,8 @@ package
|
||||
package a {
|
||||
public fun bar(/*0*/ a: kotlin.Any): kotlin.Any
|
||||
public fun bar(/*0*/ i: kotlin.Int): kotlin.Int
|
||||
public fun </*0*/ T> emptyList(): kotlin.List<T>
|
||||
public fun foo(/*0*/ l: kotlin.List<kotlin.Int>): kotlin.Int
|
||||
public fun </*0*/ T> emptyList(): kotlin.collections.List<T>
|
||||
public fun foo(/*0*/ l: kotlin.collections.List<kotlin.Int>): kotlin.Int
|
||||
public fun </*0*/ T : kotlin.Any> makeNullable(/*0*/ t: T): T?
|
||||
public fun test(/*0*/ array: kotlin.Array<kotlin.Int>): kotlin.Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user