Hey there, in the documentation of `KSValueArgumen...
# ksp
r
Hey there, in the documentation of
KSValueArgument.value
, it states that it may be a
KSClassDeclaration for annotation arguments of type Enum (in this caseKSClassDeclaration.classKind equals to ClassKind.ENUM_CLASS);
. However,
ClassKind.ENUM_CLASS
is used for the enclosing
enum class
. If this is accurate, how can you determine the entry that is the actual value of the argument? Or is the documentation just mistaken and it's actually
ClassKind.ENUM_ENTRY
?