[Analysis API] add a KDoc for the LLFirSymbolProviderNameCache

This commit is contained in:
Ilya Kirillov
2023-04-18 17:34:59 +02:00
committed by Space Team
parent 806fff0887
commit 167ed5e049
@@ -18,14 +18,44 @@ import org.jetbrains.kotlin.name.Name
/**
* Caches the names of classifiers and callables contained in a package. [LLFirSymbolProviderNameCache] is used by symbol providers to abort
* symbol finding early if the symbol name isn't contained in the symbol provider's domain.
*
* For the [getTopLevelClassifierNamesInPackage] and [getTopLevelCallableNamesInPackage] functions,
* the result may have false-positive entries but cannot have false-negative entries.
* It should contain all the names in the package but may have some additional names that are not there.
* Also, the `null` value might be returned when it's too heavyweight to calculate the results.
*
* For the [mayHaveTopLevelClassifier] and [mayHaveTopLevelCallable] functions,
* the result may be a false-positive result but cannot be a false-negative.
*/
internal abstract class LLFirSymbolProviderNameCache {
/**
* Returns the set of top-level classifier (classes, interfaces, objects, and type-aliases) names in a given scope inside the [packageFqName].
*
* @see LLFirSymbolProviderNameCache
*/
abstract fun getTopLevelClassifierNamesInPackage(packageFqName: FqName): Set<String>?
/**
* Returns the set of top-level callable (functions and properties) names in a given scope inside the [packageFqName].
*
* @see LLFirSymbolProviderNameCache
*/
abstract fun getTopLevelCallableNamesInPackage(packageFqName: FqName): Set<Name>?
/**
* Checks if a scope may contain a top-level classifier (class, interface, object, or type-alias) with the given [classId].
*
* @see LLFirSymbolProviderNameCache
*/
abstract fun mayHaveTopLevelClassifier(classId: ClassId, mayHaveFunctionClass: Boolean): Boolean
/**
* Checks if a scope may contain a top-level callable (function or property) with the [name] inside the [packageFqName].
*
* @see LLFirSymbolProviderNameCache
*/
abstract fun mayHaveTopLevelCallable(packageFqName: FqName, name: Name): Boolean
}