Is `kapt` capable of calling an additional method/...
# kapt
g
Is
kapt
capable of calling an additional method/function on an expression that’s returned from property initializer? So that all properties of type
String
like:
val prop = "kotlin"
would implicitly become
val prop = "kotlin".toUpper()
?