[AA] KtSymbolPointer: add info about semantic to kdoc

^KT-55191
This commit is contained in:
Dmitrii Gridin
2023-01-02 21:00:08 +01:00
committed by Space Team
parent 0a436d48df
commit 5c6cf57e23
@@ -33,7 +33,7 @@ public abstract class KtSymbolPointer<out S : KtSymbol> {
public abstract fun restoreSymbol(analysisSession: KtAnalysisSession): S?
/**
* @return **true** if [other] pointer can be restored to the same symbol
* @return **true** if [other] pointer can be restored to the same symbol. The operation is symmetric and transitive.
*/
public open fun pointsToTheSameSymbolAs(other: KtSymbolPointer<KtSymbol>): Boolean = this === other
}