Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KaKClassAnnotationValue (0.17 sec)

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

                    append("error(\"non-annotation value\")")
                }
                is KaKClassAnnotationValue -> {
                    renderKClassAnnotationValue(value)
                }
            }
        }
    
        private fun StringBuilder.renderKClassAnnotationValue(value: KaKClassAnnotationValue) {
            renderType(value.type)
            append("::class")
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    }
    
    public typealias KtAnnotationApplicationValue = KaAnnotationApplicationValue
    
    /**
     * Class reference used as annotation argument. E.g: `@A(String::class)`
     */
    public open class KaKClassAnnotationValue(
        type: KaType,
        classId: ClassId?,
        sourcePsi: KtElement?,
        token: KaLifetimeToken
    ) : KaAnnotationValue(token) {
        /**
         * The referenced [ClassId], if available.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top