File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
src/dotty/tools/dotc/reporting Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ object Reporter {
25
25
}
26
26
27
27
/** A reporter that ignores reports */
28
- object NoReporter extends Reporter {
28
+ @ sharable object NoReporter extends Reporter {
29
29
def doReport (m : MessageContainer )(implicit ctx : Context ) = ()
30
30
override def report (m : MessageContainer )(implicit ctx : Context ): Unit = ()
31
31
}
Original file line number Diff line number Diff line change @@ -18,16 +18,17 @@ object Jars {
18
18
lazy val scalaAsm : String =
19
19
findJarFromRuntime(" scala-asm-6.0.0-scala-1" )
20
20
21
+ /** JLine Jar */
22
+ lazy val jline : String =
23
+ findJarFromRuntime(" jline-3.7.0" )
24
+
21
25
/** Dotty extras classpath from env or properties */
22
26
val dottyExtras : List [String ] = sys.env.get(" DOTTY_EXTRAS" )
23
27
.map(_.split(" :" ).toList).getOrElse(Properties .dottyExtras)
24
28
25
- /** Dotty REPL dependencies */
26
- val dottyReplDeps : List [String ] = dottyLib :: dottyExtras
27
-
28
29
/** Dotty test dependencies */
29
30
val dottyTestDeps : List [String ] =
30
- dottyLib :: dottyCompiler :: dottyInterfaces :: dottyExtras
31
+ dottyLib :: dottyCompiler :: dottyInterfaces :: jline :: dottyExtras
31
32
32
33
/** Dotty runtime with compiler dependencies, used for quoted.Expr.run */
33
34
lazy val dottyRunWithCompiler : List [String ] =
Original file line number Diff line number Diff line change @@ -255,7 +255,8 @@ class CompilationTests extends ParallelTesting {
255
255
defaultOutputDir + libGroup + " /src/:" +
256
256
// as well as bootstrapped compiler:
257
257
defaultOutputDir + dotty1Group + " /dotty/:" +
258
- Jars .dottyInterfaces,
258
+ // and the other compiler dependecies:
259
+ Jars .dottyInterfaces + " :" + Jars .jline,
259
260
Array (" -Ycheck-reentrant" )
260
261
)
261
262
You can’t perform that action at this time.
0 commit comments