6ca5787799
Classes can't be ignored yet as it requires to ignore also all type usages which is a non-trivial operation.
13 lines
219 B
Kotlin
Vendored
13 lines
219 B
Kotlin
Vendored
import kotlinx.kapt.*
|
|
|
|
class Test {
|
|
@KaptIgnored
|
|
fun ignoredFun() {}
|
|
|
|
@KaptIgnored @get:KaptIgnored
|
|
val ignoredProperty: String = ""
|
|
|
|
fun nonIgnoredFun() {}
|
|
|
|
val nonIgnoredProperty: String = ""
|
|
} |