aboutsummaryrefslogtreecommitdiff
path: root/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/KSPropertyAccessorImpl.kt
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/KSPropertyAccessorImpl.kt')
-rw-r--r--compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/KSPropertyAccessorImpl.kt66
1 files changed, 66 insertions, 0 deletions
diff --git a/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/KSPropertyAccessorImpl.kt b/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/KSPropertyAccessorImpl.kt
new file mode 100644
index 00000000..d7559bf7
--- /dev/null
+++ b/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/KSPropertyAccessorImpl.kt
@@ -0,0 +1,66 @@
+/*
+ * Copyright 2020 Google LLC
+ * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.google.devtools.ksp.symbol.impl.kotlin
+
+import com.google.devtools.ksp.processing.impl.findAnnotationFromUseSiteTarget
+import com.google.devtools.ksp.symbol.*
+import com.google.devtools.ksp.symbol.impl.toLocation
+import com.google.devtools.ksp.toKSModifiers
+import org.jetbrains.kotlin.psi.KtProperty
+import org.jetbrains.kotlin.psi.KtPropertyAccessor
+
+abstract class KSPropertyAccessorImpl(val ktPropertyAccessor: KtPropertyAccessor) : KSPropertyAccessor {
+ companion object {
+ fun getCached(ktPropertyAccessor: KtPropertyAccessor): KSPropertyAccessor {
+ return if (ktPropertyAccessor.isGetter) {
+ KSPropertyGetterImpl.getCached(ktPropertyAccessor)
+ } else {
+ KSPropertySetterImpl.getCached(ktPropertyAccessor)
+ }
+ }
+ }
+ override val receiver: KSPropertyDeclaration by lazy {
+ KSPropertyDeclarationImpl.getCached(ktPropertyAccessor.property as KtProperty)
+ }
+ override val annotations: Sequence<KSAnnotation> by lazy {
+ ktPropertyAccessor.filterUseSiteTargetAnnotations().map { KSAnnotationImpl.getCached(it) }
+ .plus(this.findAnnotationFromUseSiteTarget())
+ }
+
+ override val parent: KSNode? by lazy {
+ receiver
+ }
+
+ override val location: Location by lazy {
+ ktPropertyAccessor.toLocation()
+ }
+
+ override val modifiers: Set<Modifier> by lazy {
+ ktPropertyAccessor.toKSModifiers()
+ }
+
+ override val origin: Origin = Origin.KOTLIN
+
+ override fun <D, R> accept(visitor: KSVisitor<D, R>, data: D): R {
+ return visitor.visitPropertyAccessor(this, data)
+ }
+
+ internal val originalAnnotations: List<KSAnnotation> by lazy {
+ ktPropertyAccessor.annotationEntries.map { KSAnnotationImpl.getCached(it) }
+ }
+}