We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ed07d commit ba80405Copy full SHA for ba80405
shared/src/main/kotlin/org/javacs/kt/classpath/WithStdlibResolver.kt
@@ -7,6 +7,8 @@ internal class WithStdlibResolver(private val wrapped: ClassPathResolver) : Clas
7
override val resolverType: String get() = "Stdlib + ${wrapped.resolverType}"
8
override val classpath: Set<Path> get() = wrapWithStdlib(wrapped.classpath)
9
override val classpathOrEmpty: Set<Path> get() = wrapWithStdlib(wrapped.classpathOrEmpty)
10
+ override val buildScriptClasspath: Set<Path> get() = wrapWithStdlib(wrapped.buildScriptClasspath)
11
+ override val buildScriptClasspathOrEmpty: Set<Path> get() = wrapWithStdlib(wrapped.buildScriptClasspathOrEmpty)
12
}
13
14
private fun wrapWithStdlib(paths: Set<Path>): Set<Path> {
0 commit comments