Implement LazyPackageMemberScope::getFunctions/VariableNames

It's necessary for future optimizations
Although current implementation is rather conservative,
it should be enough for current needs
This commit is contained in:
Denis Zharkov
2017-08-15 17:31:32 +07:00
parent 688a359985
commit 1b255b4ed0
7 changed files with 25 additions and 1 deletions
@@ -41,4 +41,6 @@ open class DelegatePackageMemberDeclarationProvider(var delegate: PackageMemberD
override fun getClassOrObjectDeclarations(name: Name) = delegate.getClassOrObjectDeclarations(name)
override fun getTypeAliasDeclarations(name: Name) = delegate.getTypeAliasDeclarations(name)
override fun getDeclarationNames() = delegate.getDeclarationNames()
}