[FIR] Remove useless code discovered by code coverage

This commit is contained in:
Ivan Kochurkin
2023-07-12 11:58:24 +02:00
committed by Space Team
parent 9486d966dc
commit ca93165044
11 changed files with 9 additions and 98 deletions
@@ -246,7 +246,6 @@ internal class KtFirScopeProvider(
private fun getScopeKind(firScope: FirScope, indexInTower: Int): KtScopeKind = when (firScope) {
is FirNameAwareOnlyCallablesScope -> getScopeKind(firScope.delegate, indexInTower)
is FirNameAwareOnlyClassifiersScope -> getScopeKind(firScope.delegate, indexInTower)
is FirLocalScope -> KtScopeKind.LocalScope(indexInTower)
is FirTypeScope -> KtScopeKind.TypeScope(indexInTower)