Generate IrTypeParameter and IrValueParameter declarations

This commit is contained in:
Dmitry Petrov
2017-03-15 17:47:46 +03:00
parent 03b664febd
commit 8cea27b5bb
149 changed files with 2251 additions and 331 deletions
@@ -0,0 +1,14 @@
val test1 = 42
var test2 = 42
class Host {
val testMember1 = 42
var testMember2 = 42
}
class InPrimaryCtor<T>(
val testInPrimaryCtor1: T,
var testInPrimaryCtor2: Int = 42
)