[Analysis API] Minor, remove mentions of on-air analysis in KDoc

This commit is contained in:
Yan Zhulanow
2024-01-11 20:42:40 +09:00
committed by Space Team
parent 2c4fbb1eb1
commit 8c5c40760b
2 changed files with 1 additions and 9 deletions
@@ -28,8 +28,6 @@ internal class LLFirModuleLazyDeclarationResolver(val moduleComponents: LLFirMod
* Might resolve additional required declarations.
*
* Resolution is performed under the lock specific to each declaration that is going to be resolved.
*
* Suitable for body resolve or/and on-air resolve.
*/
fun lazyResolve(
target: FirElementWithResolveState,
@@ -46,8 +44,6 @@ internal class LLFirModuleLazyDeclarationResolver(val moduleComponents: LLFirMod
* Might resolve additional required declarations.
*
* Resolution is performed under the lock specific to each declaration that is going to be resolved.
*
* Suitable for body resolve or/and on-air resolve.
*/
fun lazyResolveWithCallableMembers(
target: FirRegularClass,
@@ -63,8 +59,6 @@ internal class LLFirModuleLazyDeclarationResolver(val moduleComponents: LLFirMod
* Might resolve additional required declarations.
*
* Resolution is performed under the lock specific to each declaration that is going to be resolved.
*
* Suitable for body resolve or/and on-air resolve.
*/
fun lazyResolveRecursively(
target: FirElementWithResolveState,
@@ -103,8 +97,6 @@ internal class LLFirModuleLazyDeclarationResolver(val moduleComponents: LLFirMod
* Might resolve additional required declarations.
*
* Resolution is performed under the lock specific to each declaration which is going to be resolved.
*
* Suitable for body resolve or/and on-air resolve.
*/
fun lazyResolveTarget(
target: LLFirResolveTarget,
@@ -293,7 +293,7 @@ private class LLFirCompilerRequiredAnnotationsTargetResolver(
*/
annotationTypeRef = transformer.annotationTransformer.createDeepCopyOfTypeRef(userTypeRef)
// We assume that non-empty argument must be a lazy expression, or it is a copied declaration inside an on-air session
// Non-empty arguments must be lazy expressions
if (FirLazyBodiesCalculator.needCalculatingAnnotationCall(annotation)) {
argumentList = FirLazyBodiesCalculator.calculateLazyArgumentsForAnnotation(annotation, llFirSession)
}