Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AnnotationValue (0.19 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    public class KaAnnotationApplicationValue @KaAnalysisApiInternals constructor(
        annotationValue: KaAnnotation,
        token: KaLifetimeToken
    ) : KaAnnotationValue(token) {
        public val annotationValue: KaAnnotation = annotationValue
            get() = withValidityAssertion { field }
    
        override val sourcePsi: KtElement?
            get() = withValidityAssertion { annotationValue.psi }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

     * Initializer of property of annotation, which can not be which cannot be represented as Kotlin const value,
     *   but can be represented as [KaAnnotationValue]
     */
    public class KaConstantValueForAnnotation(
        public val annotationValue: KaAnnotationValue,
        override val initializerPsi: KtExpression?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValueRenderer.kt

            append(value.callableId?.asSingleFqName()?.asString())
        }
    
        private fun StringBuilder.renderAnnotationConstantValue(application: KaAnnotationApplicationValue) {
            renderAnnotationApplication(application.annotationValue)
        }
    
        private fun StringBuilder.renderAnnotationApplication(value: KaAnnotation) {
            append(value.classId)
            if (value.arguments.isNotEmpty()) {
                append("(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top