Can anyone explain why `returnType` on `KsProperty...
# ksp
j
Can anyone explain why
returnType
on
KsPropertyGetter
is nullable? In what cases would a getter not have a return type?
j
its nullability comes from compiler internal where when resolution error happened, a property’s kotlin type will be
null
, and kept in the implementation. now that we have
KSErrorType
added, it makes sense to me to change it to error type instead of null.
👌 1
e
Is there an issue for this? (that I can star or watch)