Fix testData in compiler: add collections and ranges package to fq-names.

This commit is contained in:
Ilya Gorbunov
2015-11-28 01:42:20 +03:00
parent 98e2d27c77
commit f4822cd757
524 changed files with 1594 additions and 1552 deletions
@@ -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
@@ -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