Home
last modified time | relevance | path

Searched refs:KSDefNonNullReferenceImpl (Results 1 – 2 of 2) sorted by relevance

/external/ksp/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/kotlin/
DKSDefNonNullReferenceImpl.kt11 class KSDefNonNullReferenceImpl private constructor(val ktIntersectionType: KtIntersectionType) : class
13 companion object : KSObjectCache<KtIntersectionType, KSDefNonNullReferenceImpl>() {
14 fun getCached(ktIntersectionType: KtIntersectionType) = KSDefNonNullReferenceImpl in getCached()
15 .cache.getOrPut(ktIntersectionType) { KSDefNonNullReferenceImpl(ktIntersectionType) } in getCached()
DKSTypeReferenceImpl.kt115 is KtIntersectionType -> KSDefNonNullReferenceImpl.getCached(typeElement) in <lambda>()