[SLC] rename from SimpleAnnotationsBox to ComputeAllAtOnceAnnotationsBox
^KT-56046
This commit is contained in:
committed by
Space Team
parent
0b7ef03490
commit
650267592c
+1
-1
@@ -12,7 +12,7 @@ import com.intellij.psi.PsiModifierList
|
||||
* This class is used as a proxy for [com.intellij.psi.PsiAnnotationOwner].
|
||||
*
|
||||
* [LazyAnnotationsBox] provides an ability to compute each annotation separately and in a lazy way to avoid heavy computation.
|
||||
* [SimpleAnnotationsBox] provides an ability to compute all annotations once on first access.
|
||||
* [ComputeAllAtOnceAnnotationsBox] provides an ability to compute all annotations once on first access.
|
||||
* [EmptyAnnotationsBox] just a box without annotations.
|
||||
*
|
||||
* @see org.jetbrains.kotlin.light.classes.symbol.modifierLists.SymbolLightModifierList
|
||||
|
||||
+4
-2
@@ -10,7 +10,9 @@ import com.intellij.psi.PsiModifierList
|
||||
import org.jetbrains.kotlin.light.classes.symbol.toArrayIfNotEmptyOrDefault
|
||||
import java.util.concurrent.atomic.AtomicReferenceFieldUpdater
|
||||
|
||||
internal class SimpleAnnotationsBox(private val annotationsComputer: (PsiModifierList) -> Collection<PsiAnnotation>) : AnnotationsBox {
|
||||
internal class ComputeAllAtOnceAnnotationsBox(
|
||||
private val annotationsComputer: (PsiModifierList) -> Collection<PsiAnnotation>,
|
||||
) : AnnotationsBox {
|
||||
@Volatile
|
||||
private var cachedAnnotations: Collection<PsiAnnotation>? = null
|
||||
|
||||
@@ -34,7 +36,7 @@ internal class SimpleAnnotationsBox(private val annotationsComputer: (PsiModifie
|
||||
|
||||
companion object {
|
||||
private val fieldUpdater = AtomicReferenceFieldUpdater.newUpdater(
|
||||
/* tclass = */ SimpleAnnotationsBox::class.java,
|
||||
/* tclass = */ ComputeAllAtOnceAnnotationsBox::class.java,
|
||||
/* vclass = */ Collection::class.java,
|
||||
/* fieldName = */ "cachedAnnotations",
|
||||
)
|
||||
+2
-2
@@ -17,7 +17,7 @@ import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
|
||||
import org.jetbrains.kotlin.analysis.api.symbols.sourcePsiSafe
|
||||
import org.jetbrains.kotlin.asJava.builder.LightMemberOrigin
|
||||
import org.jetbrains.kotlin.asJava.classes.lazyPub
|
||||
import org.jetbrains.kotlin.light.classes.symbol.annotations.SimpleAnnotationsBox
|
||||
import org.jetbrains.kotlin.light.classes.symbol.annotations.ComputeAllAtOnceAnnotationsBox
|
||||
import org.jetbrains.kotlin.light.classes.symbol.annotations.SymbolLightSimpleAnnotation
|
||||
import org.jetbrains.kotlin.light.classes.symbol.annotations.hasDeprecatedAnnotation
|
||||
import org.jetbrains.kotlin.light.classes.symbol.classes.SymbolLightClassForClassLike
|
||||
@@ -65,7 +65,7 @@ internal class SymbolLightFieldForObject private constructor(
|
||||
},
|
||||
computer = ::computeModifiers,
|
||||
),
|
||||
annotationsBox = SimpleAnnotationsBox { modifierList ->
|
||||
annotationsBox = ComputeAllAtOnceAnnotationsBox { modifierList ->
|
||||
listOf(SymbolLightSimpleAnnotation(NotNull::class.java.name, modifierList))
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user