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
24 lines
331 B
Plaintext
Vendored
24 lines
331 B
Plaintext
Vendored
// -- Module: <m1> --
|
|
package
|
|
|
|
package p {
|
|
public fun f(/*0*/ s: kotlin.String, /*1*/ t: kotlin.String): kotlin.String
|
|
}
|
|
|
|
|
|
// -- Module: <m2> --
|
|
package
|
|
|
|
package p {
|
|
public fun f(/*0*/ s: kotlin.String, /*1*/ t: kotlin.String): kotlin.String
|
|
}
|
|
|
|
|
|
// -- Module: <m3> --
|
|
package
|
|
|
|
public fun test(): kotlin.Unit
|
|
|
|
package p {
|
|
}
|