Write typeinfo annotations of generated componentN methods

Add some LoadKotlin testcases to test that.
This commit is contained in:
Alexander Udalov
2012-08-30 16:11:50 +04:00
parent 2c84389a45
commit 2aadfa47ee
15 changed files with 82 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace test
jet.data() internal final class test.DataClass : jet.Any {
public final /*constructor*/ fun <init>(/*0*/ x: jet.String, /*1*/ y: jet.Int, /*2*/ z: jet.Double): test.DataClass
internal final fun component1(): jet.String
internal final fun component2(): jet.Double
internal final var x: jet.String
internal final val z: jet.Double
}