File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
compilation/src/main/dotc/scala/tools/benchmark Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name := "compiler-benchmark"
33version := " 1.0-SNAPSHOT"
44
55def scala212 = " 2.12.8"
6- def dottyLatest = " 0.21 .0-RC1"
6+ def dottyLatest = " 0.22 .0-RC1"
77scalaVersion in ThisBuild := scala212
88val JmhConfig = config(" jmh" )
99
Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ trait BenchmarkDriver extends BaseBenchmarkDriver {
99 implicit val ctx = new ContextBase ().initialCtx.fresh
1010 ctx.setSetting(ctx.settings.usejavacp, true )
1111 if (depsClasspath != null ) {
12- ctx.setSetting(ctx.settings.classpath,
13- depsClasspath.mkString(File .pathSeparator))
12+ ctx.setSetting(ctx.settings.classpath, depsClasspath)
1413 }
1514 ctx.setSetting(ctx.settings.migration, false )
1615 ctx.setSetting(ctx.settings.outputDir, dotty.tools.io.AbstractFile .getDirectory(tempDir.getAbsolutePath))
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ logLevel := Level.Warn
55addSbtPlugin(" pl.project13.scala" % " sbt-jmh" % " 0.3.7" )
66
77// sbt-dotty plugin - to support `scalaVersion := "0.x"`
8- addSbtPlugin(" ch.epfl.lamp" % " sbt-dotty" % " 0.3.4 " )
8+ addSbtPlugin(" ch.epfl.lamp" % " sbt-dotty" % " 0.4.0 " )
You can’t perform that action at this time.
0 commit comments