Lint: Fix KT-11919 ("Missing Parcelable CREATOR field" rule is not accurate)

This commit is contained in:
Yan Zhulanow
2016-04-19 16:14:34 +03:00
parent 33434a3c5b
commit a2b1eb7ee8
6 changed files with 114 additions and 7 deletions
@@ -34,6 +34,8 @@ open class UastModifier(val name: String) {
val VARARG = UastModifier("vararg")
@JvmField
val OVERRIDE = UastModifier("override")
@JvmField
val FIELD = UastModifier("field")
val VALUES = listOf(ABSTRACT, STATIC, FINAL, IMMUTABLE, VARARG, OVERRIDE)
}