diff --git a/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/KotlinScriptConfigurationManager.kt b/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/KotlinScriptConfigurationManager.kt index 406fdf5e23c..9e02f20e4f4 100644 --- a/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/KotlinScriptConfigurationManager.kt +++ b/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/KotlinScriptConfigurationManager.kt @@ -28,7 +28,6 @@ import com.intellij.openapi.vfs.newvfs.BulkFileListener import com.intellij.openapi.vfs.newvfs.events.VFileEvent import com.intellij.psi.search.FileTypeIndex import com.intellij.psi.search.GlobalSearchScope -import com.intellij.util.indexing.IndexableSetContributor import com.intellij.util.io.URLUtil import org.jetbrains.kotlin.idea.caches.resolve.FileLibraryScope import org.jetbrains.kotlin.idea.util.application.runReadAction @@ -138,12 +137,3 @@ class KotlinScriptConfigurationManager( } } - -class KotlinScriptDependenciesIndexableSetContributor : IndexableSetContributor() { - - override fun getAdditionalProjectRootsToIndex(project: Project): Set = - KotlinScriptConfigurationManager.getInstance(project).getAllScriptsClasspath().toSet() - - override fun getAdditionalRootsToIndex(): Set = emptySet() -} - diff --git a/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/dependencies/KotlinScriptDependenciesIndexableSetContributor.kt b/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/dependencies/KotlinScriptDependenciesIndexableSetContributor.kt new file mode 100644 index 00000000000..b642ff8dabf --- /dev/null +++ b/idea/idea-core/src/org/jetbrains/kotlin/idea/core/script/dependencies/KotlinScriptDependenciesIndexableSetContributor.kt @@ -0,0 +1,32 @@ +/* + * Copyright 2010-2016 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.jetbrains.kotlin.idea.core.script.dependencies + +import com.intellij.openapi.project.Project +import com.intellij.openapi.vfs.VirtualFile +import com.intellij.util.indexing.IndexableSetContributor +import org.jetbrains.kotlin.idea.core.script.KotlinScriptConfigurationManager + +class KotlinScriptDependenciesIndexableSetContributor : IndexableSetContributor() { + + override fun getAdditionalProjectRootsToIndex(project: Project): Set { + val manager = KotlinScriptConfigurationManager.getInstance(project) + return (manager.getAllScriptsClasspath() + manager.getAllLibrarySources()).toSet() + } + + override fun getAdditionalRootsToIndex(): Set = emptySet() +} \ No newline at end of file diff --git a/idea/src/META-INF/plugin.xml b/idea/src/META-INF/plugin.xml index 5164833dd11..a4e1ead9492 100644 --- a/idea/src/META-INF/plugin.xml +++ b/idea/src/META-INF/plugin.xml @@ -293,8 +293,6 @@ - - @@ -1601,6 +1599,7 @@ +