FIR IDE: Add API to get implicit receiver types at a position

This will be used in completion contribution.
This commit is contained in:
Tianyu Geng
2021-08-24 20:51:59 -07:00
committed by Ilya Kirillov
parent 14452661cc
commit 3b48103cd2
2 changed files with 29 additions and 12 deletions
@@ -11,6 +11,7 @@ import org.jetbrains.kotlin.analysis.api.types.KtFlexibleType
import org.jetbrains.kotlin.analysis.api.types.KtType
import org.jetbrains.kotlin.analysis.api.types.KtTypeNullability
import org.jetbrains.kotlin.psi.KtDoubleColonExpression
import org.jetbrains.kotlin.psi.KtElement
import org.jetbrains.kotlin.psi.KtTypeReference
public abstract class KtTypeProvider : KtAnalysisSessionComponent() {
@@ -29,6 +30,8 @@ public abstract class KtTypeProvider : KtAnalysisSessionComponent() {
public abstract fun withNullability(type: KtType, newNullability: KtTypeNullability): KtType
public abstract fun haveCommonSubtype(a: KtType, b: KtType): Boolean
public abstract fun getImplicitReceiverTypesAtPosition(position: KtElement): List<KtType>
}
public interface KtTypeProviderMixIn : KtAnalysisSessionMixIn {
@@ -81,6 +84,13 @@ public interface KtTypeProviderMixIn : KtAnalysisSessionMixIn {
/** Check whether this type is compatible with that type. If they are compatible, it means they can have a common subtype. */
public fun KtType.hasCommonSubTypeWith(that: KtType): Boolean = analysisSession.typeProvider.haveCommonSubtype(this, that)
/**
* Gets all the implicit receiver types available at the given position. The type of the outermost receiver appears at the beginning
* of the returned list.
*/
public fun getImplicitReceiverTypesAtPosition(position: KtElement): List<KtType> =
analysisSession.typeProvider.getImplicitReceiverTypesAtPosition(position)
}
@Suppress("PropertyName")