javac-wrapper: refactoring, fixes and tests

This commit is contained in:
baratynskiy
2017-06-27 17:24:10 +03:00
committed by Alexander Baratynskiy
parent 8494e54608
commit 01883a41cb
382 changed files with 42897 additions and 688 deletions
@@ -0,0 +1,15 @@
package test
public final class BasicTest : test.InnerWithGenericOuter<kotlin.String> {
public constructor BasicTest()
protected open fun test(/*0*/ test.InnerWithGenericOuter<kotlin.String>.Module): kotlin.Unit
}
public abstract class InnerWithGenericOuter</*0*/ T : kotlin.Any!> {
public constructor InnerWithGenericOuter</*0*/ T : kotlin.Any!>()
protected/*protected and package*/ abstract fun test(/*0*/ test.InnerWithGenericOuter<T!>.Module!): kotlin.Unit
public open inner class Module /*captured type parameters: /*0*/ T : kotlin.Any!*/ {
public constructor Module()
}
}