Support Java constructors in FIR (related to KT-29218)

This commit is contained in:
Mikhail Glukhikh
2019-03-01 14:17:58 +03:00
parent 484e67727f
commit 14fb495ab6
21 changed files with 152 additions and 29 deletions
@@ -1,2 +1,4 @@
<T> public open class ConstructorWithNewTypeParams : R|java/lang/Object| {
public final function ConstructorWithNewTypeParams(first: R|ft<U, U?>|!): R|test/ConstructorWithNewTypeParams|
}
@@ -1,2 +1,4 @@
<T> public open class ConstructorWithParentTypeParams : R|java/lang/Object| {
public final function ConstructorWithParentTypeParams(first: R|ft<T, T?>|!): R|test/ConstructorWithParentTypeParams|
}
@@ -1,2 +1,4 @@
public open class ConstructorWithSeveralParams : R|java/lang/Object| {
public final function ConstructorWithSeveralParams(integer: R|ft<kotlin/Int, kotlin/Int?>|!, intBasic: R|kotlin/Int|, collection: R|ft<java/util/ArrayList<ft<kotlin/String, kotlin/String?>>, java/util/ArrayList<ft<kotlin/String, kotlin/String?>>?>|!): R|test/ConstructorWithSeveralParams|
}
@@ -1,2 +1,4 @@
public open class ConstructorWithoutParams : R|java/lang/Object| {
public final function ConstructorWithoutParams(): R|test/ConstructorWithoutParams|
}