Add missing recordLookup implementations
This commit is contained in:
committed by
Ilya Chernikov
parent
7526ff9484
commit
573c60ed6b
@@ -91,6 +91,14 @@ class LexicalChainedScope private constructor(
|
||||
p.println("}")
|
||||
}
|
||||
|
||||
override fun definitelyDoesNotContainName(name: Name): Boolean {
|
||||
return memberScopes.all { it.definitelyDoesNotContainName(name) }
|
||||
}
|
||||
|
||||
override fun recordLookup(name: Name, location: LookupLocation) {
|
||||
memberScopes.forEach { it.recordLookup(name, location) }
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
||||
@JvmOverloads
|
||||
|
||||
Reference in New Issue
Block a user