File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ object Jars {
15
15
}
16
16
17
17
val dottyExtras : List [String ] = sys.env.get(" DOTTY_EXTRAS" )
18
- .map(_.split(" ," ).toList).getOrElse(Nil )
18
+ .map(_.split(" :" ).toList).getOrElse(Nil )
19
+
20
+ val dottyReplDeps : List [String ] = dottyLib :: dottyExtras
19
21
20
22
val dottyTestDeps : List [String ] =
21
23
dottyLib :: dottyCompiler :: dottyInterfaces :: dottyExtras
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class TestREPL(script: String) extends REPL {
24
24
override def context (ctx : Context ) = {
25
25
val fresh = ctx.fresh
26
26
fresh.setSetting(ctx.settings.color, " never" )
27
- fresh.setSetting(ctx.settings.classpath, Jars .dottyLib )
27
+ fresh.setSetting(ctx.settings.classpath, Jars .dottyReplDeps.mkString( " : " ) )
28
28
fresh.initialize()(fresh)
29
29
fresh
30
30
}
You can’t perform that action at this time.
0 commit comments