add more quickfixes to cleanup action

This commit is contained in:
Dmitry Jemerov
2015-05-20 14:42:48 +02:00
parent 6e7ea662c8
commit e2dbfebf32
4 changed files with 54 additions and 9 deletions
@@ -18,3 +18,15 @@ val f = { (a: Int, b: Int) -> a + b }
annotation class Ann(val arg1: Class<*>, val arg2: Class<out Any?>)
Ann(javaClass<String>(), javaClass<Int>()) class MyClass
class A private()
val x = fun foo(x: String) { }
fun foo() {
@loop
for (i in 1..100) {
/* comment */
continue@loop
}
}
@@ -20,3 +20,15 @@ val f = { a: Int, b: Int -> a + b }
annotation class Ann(val arg1: KClass<*>, val arg2: KClass<out Any?>)
Ann(String::class, Int::class) class MyClass
class A private constructor()
val x = fun(x: String) { }
fun foo() {
loop@
for (i in 1..100) {
/* comment */
continue@loop
}
}