diff options
author | vmishenev <vad-mishenev@yandex.ru> | 2021-08-09 12:51:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 11:51:59 +0200 |
commit | d197f0544b4cd1ade870ebde0d6a6a43a94daf9a (patch) | |
tree | 979d44a4e5b127956987f0d0d234b90594ce3152 /core/src | |
parent | ec2bf8a57c744008c30d03c4aec0921a091faa81 (diff) | |
download | dokka-d197f0544b4cd1ade870ebde0d6a6a43a94daf9a.tar.gz dokka-d197f0544b4cd1ade870ebde0d6a6a43a94daf9a.tar.bz2 dokka-d197f0544b4cd1ade870ebde0d6a6a43a94daf9a.zip |
Property annotation for getter and setter (#2049)
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/kotlin/model/additionalExtras.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/model/additionalExtras.kt b/core/src/main/kotlin/model/additionalExtras.kt index 4f78e7af..62e1fa2d 100644 --- a/core/src/main/kotlin/model/additionalExtras.kt +++ b/core/src/main/kotlin/model/additionalExtras.kt @@ -61,7 +61,7 @@ data class Annotations( }.toMap() enum class AnnotationScope { - DIRECT, FILE + DIRECT, FILE, GETTER, SETTER } } |