c1eebacd55
Because PackageViewDescriptor may consist of several package fragments from different modules (see LazyPackageViewDescriptorImpl#fragments), we now filter out fragments from irrelevant modules before rendering them into the .txt
28 lines
365 B
Plaintext
Vendored
28 lines
365 B
Plaintext
Vendored
// -- Module: <m1> --
|
|
package
|
|
|
|
package p1 {
|
|
@kotlin.SinceKotlin(version = "1.1") public fun foo(/*0*/ s: kotlin.Int): kotlin.String
|
|
}
|
|
|
|
|
|
// -- Module: <m2> --
|
|
package
|
|
|
|
package p2 {
|
|
public fun foo(/*0*/ s: kotlin.Int): kotlin.Int
|
|
}
|
|
|
|
|
|
// -- Module: <m3> --
|
|
package
|
|
|
|
public fun test1(): kotlin.Int
|
|
public fun test2(): kotlin.Int
|
|
|
|
package p1 {
|
|
}
|
|
|
|
package p2 {
|
|
}
|