We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FirPredicateBasedProvider.getSymbolsByPredicate
1 parent 5cb5aeb commit ad724caCopy full SHA for ad724ca
compiler/fir/tree/src/org/jetbrains/kotlin/fir/extensions/FirPredicateBasedProvider.kt
@@ -17,7 +17,10 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
17
18
abstract class FirPredicateBasedProvider : FirSessionComponent {
19
/**
20
- * @return list of all declarations from compiled source module which are matched to [predicate]
+ * Returns a list of all declarations from compiled source module which are matched to [predicate].
21
+ *
22
+ * All returned declarations are guaranteed to be non-local due to the contract of [LookupPredicate]
23
+ * (see the documentation on [AbstractPredicate] for more details).
24
*/
25
abstract fun getSymbolsByPredicate(predicate: LookupPredicate): List<FirBasedSymbol<*>>
26
0 commit comments