[FIR] Add toString to all type scopes

This commit is contained in:
Dmitriy Novozhilov
2021-12-09 12:02:10 +03:00
parent e4978d8022
commit d588b2e654
9 changed files with 36 additions and 0 deletions
@@ -58,6 +58,10 @@ abstract class FirTypeScope : FirContainingNamesAwareScope() {
override fun getCallableNames(): Set<Name> = emptySet()
override fun getClassifierNames(): Set<Name> = emptySet()
override fun toString(): String {
return "Empty scope"
}
}
protected companion object {