Fix testData in compiler: add collections and ranges package to fq-names.
This commit is contained in:
Vendored
+3
-3
@@ -1,5 +1,5 @@
|
||||
package
|
||||
|
||||
public fun </*0*/ T> emptyList(): kotlin.List<T>
|
||||
public fun </*0*/ T> foo(/*0*/ f: () -> kotlin.Collection<T>, /*1*/ p: (T) -> kotlin.Boolean): kotlin.Collection<T>
|
||||
public fun test(): kotlin.Collection<kotlin.Int>
|
||||
public fun </*0*/ T> emptyList(): kotlin.collections.List<T>
|
||||
public fun </*0*/ T> foo(/*0*/ f: () -> kotlin.collections.Collection<T>, /*1*/ p: (T) -> kotlin.Boolean): kotlin.collections.Collection<T>
|
||||
public fun test(): kotlin.collections.Collection<kotlin.Int>
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package
|
||||
|
||||
package h {
|
||||
public fun </*0*/ T> emptyList(): kotlin.List<T>
|
||||
public fun </*0*/ T> emptyList(): kotlin.collections.List<T>
|
||||
public fun foo(/*0*/ i: kotlin.Int): kotlin.Int
|
||||
public fun foo(/*0*/ s: kotlin.String): kotlin.String
|
||||
public fun test(): kotlin.Unit
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
public fun </*0*/ D, /*1*/ E : D> kotlin.List<ResolutionTask<D, E>>.bar(/*0*/ t: ResolutionTask<D, E>): ResolutionTask<D, E>
|
||||
public fun </*0*/ D, /*1*/ E : D> kotlin.collections.List<ResolutionTask<D, E>>.bar(/*0*/ t: ResolutionTask<D, E>): ResolutionTask<D, E>
|
||||
|
||||
public final class ResolutionCandidate</*0*/ A> {
|
||||
public constructor ResolutionCandidate</*0*/ A>()
|
||||
@@ -21,6 +21,6 @@ public final class ResolutionTaskHolder</*0*/ F, /*1*/ G : F> {
|
||||
public constructor ResolutionTaskHolder</*0*/ F, /*1*/ G : F>()
|
||||
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 fun test(/*0*/ candidate: ResolutionCandidate<F>, /*1*/ tasks: kotlin.MutableList<ResolutionTask<F, G>>): kotlin.Unit
|
||||
public final fun test(/*0*/ candidate: ResolutionCandidate<F>, /*1*/ tasks: kotlin.collections.MutableList<ResolutionTask<F, G>>): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
+4
-4
@@ -2,10 +2,10 @@ package
|
||||
|
||||
package a {
|
||||
public fun doInt(/*0*/ i: kotlin.Int): kotlin.Int
|
||||
public fun doList(/*0*/ l: kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
public fun </*0*/ T : a.A> emptyListOfA(): kotlin.List<T>
|
||||
public fun getList(): kotlin.List<kotlin.Int>?
|
||||
public fun </*0*/ T> strangeList(/*0*/ f: (T) -> kotlin.Unit): kotlin.List<T>
|
||||
public fun doList(/*0*/ l: kotlin.collections.List<kotlin.Int>): kotlin.collections.List<kotlin.Int>
|
||||
public fun </*0*/ T : a.A> emptyListOfA(): kotlin.collections.List<T>
|
||||
public fun getList(): kotlin.collections.List<kotlin.Int>?
|
||||
public fun </*0*/ T> strangeList(/*0*/ f: (T) -> kotlin.Unit): kotlin.collections.List<T>
|
||||
public fun testDataFlowInfo1(/*0*/ a: kotlin.Int?, /*1*/ b: kotlin.Int?): kotlin.Unit
|
||||
public fun testDataFlowInfo2(/*0*/ a: kotlin.Int?, /*1*/ b: kotlin.Int?): kotlin.Unit
|
||||
public fun testElvis(/*0*/ a: kotlin.Int?, /*1*/ b: kotlin.Int?): kotlin.Unit
|
||||
|
||||
+3
-3
@@ -2,10 +2,10 @@ package
|
||||
|
||||
package a {
|
||||
public fun doInt(/*0*/ i: kotlin.Int): kotlin.Int
|
||||
public fun doList(/*0*/ l: kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
public fun </*0*/ T : a.A> emptyNullableListOfA(): kotlin.List<T>?
|
||||
public fun doList(/*0*/ l: kotlin.collections.List<kotlin.Int>): kotlin.collections.List<kotlin.Int>
|
||||
public fun </*0*/ T : a.A> emptyNullableListOfA(): kotlin.collections.List<T>?
|
||||
public fun </*0*/ T> id(/*0*/ t: T): T
|
||||
public fun </*0*/ T> strangeNullableList(/*0*/ f: (T) -> kotlin.Unit): kotlin.List<T>?
|
||||
public fun </*0*/ T> strangeNullableList(/*0*/ f: (T) -> kotlin.Unit): kotlin.collections.List<T>?
|
||||
public fun testDataFlowInfoAfterExclExcl(/*0*/ a: kotlin.Int?): kotlin.Unit
|
||||
public fun testExclExcl(): kotlin.Unit
|
||||
public fun testUnnecessaryExclExcl(/*0*/ a: kotlin.Int): kotlin.Unit
|
||||
|
||||
Reference in New Issue
Block a user