org.jetbrains.kotlin.asJava.elements.KtLightAnnotationsValues.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.asJava.elements
import com.intellij.psi.*
import com.intellij.psi.impl.light.LightIdentifier
import org.jetbrains.kotlin.asJava.classes.cannotModify
import org.jetbrains.kotlin.asJava.classes.lazyPub
import org.jetbrains.kotlin.builtins.jvm.JavaToKotlinClassMap
import org.jetbrains.kotlin.name.FqNameUnsafe
import org.jetbrains.kotlin.psi.KtElement
class KtLightPsiArrayInitializerMemberValue(
override val kotlinOrigin: KtElement,
private val lightParent: PsiElement,
private val arguments: (KtLightPsiArrayInitializerMemberValue) -> List
) : KtLightElementBase(lightParent), PsiArrayInitializerMemberValue {
override fun getInitializers(): Array = arguments(this).toTypedArray()
override fun getParent(): PsiElement = lightParent
override fun isPhysical(): Boolean = false
}
fun psiType(kotlinFqName: String, context: PsiElement, boxPrimitiveType: Boolean = false): PsiType {
if (!boxPrimitiveType) {
when (kotlinFqName) {
"kotlin.Int" -> return PsiTypes.intType()
"kotlin.Long" -> return PsiTypes.longType()
"kotlin.Short" -> return PsiTypes.shortType()
"kotlin.Boolean" -> return PsiTypes.booleanType()
"kotlin.Byte" -> return PsiTypes.byteType()
"kotlin.Char" -> return PsiTypes.charType()
"kotlin.Double" -> return PsiTypes.doubleType()
"kotlin.Float" -> return PsiTypes.floatType()
}
}
when (kotlinFqName) {
"kotlin.IntArray" -> return PsiTypes.intType().createArrayType()
"kotlin.LongArray" -> return PsiTypes.longType().createArrayType()
"kotlin.ShortArray" -> return PsiTypes.shortType().createArrayType()
"kotlin.BooleanArray" -> return PsiTypes.booleanType().createArrayType()
"kotlin.ByteArray" -> return PsiTypes.byteType().createArrayType()
"kotlin.CharArray" -> return PsiTypes.charType().createArrayType()
"kotlin.DoubleArray" -> return PsiTypes.doubleType().createArrayType()
"kotlin.FloatArray" -> return PsiTypes.floatType().createArrayType()
}
val javaFqName = JavaToKotlinClassMap.mapKotlinToJava(FqNameUnsafe(kotlinFqName))?.asSingleFqName()?.asString() ?: kotlinFqName
return PsiType.getTypeByName(javaFqName, context.project, context.resolveScope)
}
class KtLightPsiNameValuePair(
override val kotlinOrigin: KtElement,
private val name: String,
lightParent: PsiElement,
private val argument: (KtLightPsiNameValuePair) -> PsiAnnotationMemberValue?
) : KtLightElementBase(lightParent),
PsiNameValuePair {
override fun setValue(newValue: PsiAnnotationMemberValue): PsiAnnotationMemberValue = cannotModify()
override fun getNameIdentifier(): PsiIdentifier? = LightIdentifier(kotlinOrigin.manager, name)
override fun getName(): String? = name
private val _value: PsiAnnotationMemberValue? by lazyPub { argument(this) }
override fun getValue(): PsiAnnotationMemberValue? = _value
override fun getLiteralValue(): String? = (value as? PsiLiteralExpression)?.value?.toString()
}