j2k: Adjust annotation converter to last changes

Only parameter named `value` can be marked vararg
This commit is contained in:
Denis Zharkov
2015-04-07 11:19:36 +03:00
parent 37d7327482
commit f85e92a247
8 changed files with 83 additions and 19 deletions
@@ -1,4 +1,4 @@
annotation class Anon(public val s: String = "a", public val stringArray: Array<String> = array("a", "b"), public vararg val intArray: Int)
annotation class Anon(public val s: String = "a", public val stringArray: Array<String> = array("a", "b"), public val intArray: IntArray)
Anon(intArray = *intArray(1, 2))
Anon(intArray = intArray(1, 2))
class A