Migrate type of throws parameter to KClass

Change declaration, testData and codegen parts for `throws`
This commit is contained in:
Denis Zharkov
2015-04-20 19:58:02 +03:00
parent e1dfdc582d
commit 6ef2340eb5
9 changed files with 21 additions and 20 deletions
@@ -7,9 +7,9 @@ class Test {
throws()
fun none() {}
throws(javaClass<E1>())
throws(E1::class)
fun one() {}
throws(javaClass<E1>(), javaClass<E2>())
throws(E1::class, E2::class)
fun two() {}
}