FIR: fix search scope to include kotlin libraries package parts

This commit is contained in:
Simon Ogorodnik
2019-04-15 16:49:55 +03:00
committed by Mikhail Glukhikh
parent 4cb8faf666
commit e7ea75fd81
2 changed files with 13 additions and 6 deletions
@@ -73,7 +73,8 @@ class FirResolveModularizedTotalKotlinTest : KtUsefulTestCase() {
val ktFiles = environment.getSourceFiles()
val scope = ProjectScope.getContentScope(project)
val session = createSession(environment, scope)
val librariesScope = ProjectScope.getLibrariesScope(project)
val session = createSession(environment, scope, librariesScope)
val builder = RawFirBuilder(session, stubMode = false)
val totalTransformer = FirTotalResolveTransformer()