K2: Adjust Analysis API to the recent scope structure changes

Namely, in the previous commit we merged two
(LOW and HIGH priority default start import scopes) into the single one

For more explanations, please look at the previous commit
This commit is contained in:
Denis.Zharkov
2023-06-22 12:59:21 +02:00
committed by Space Team
parent 01354c8ce5
commit 78e2d53f3c
23 changed files with 94 additions and 81 deletions
@@ -16,8 +16,8 @@ import org.jetbrains.kotlin.name.Name
* @see org.jetbrains.kotlin.resolve.lazy.LazyImportScope that produces similar semantics
*/
class FirDefaultStarImportingScope(
private val first: FirSingleLevelDefaultStarImportingScope,
private val second: FirSingleLevelDefaultStarImportingScope,
val first: FirSingleLevelDefaultStarImportingScope,
val second: FirSingleLevelDefaultStarImportingScope,
) : FirScope(), DefaultStarImportingScopeMarker {
override fun processClassifiersByNameWithSubstitution(name: Name, processor: (FirClassifierSymbol<*>, ConeSubstitutor) -> Unit) {
var wasFoundAny = false