test.scala.sourcecode.TestUtil.scala Maven / Gradle / Ivy
package sourcecode
object TestUtil {
// FIXME In dotty, scala.util.Properties.versionNumberString is still like 2.12.x
lazy val isDotty = {
val cl: ClassLoader = Thread.currentThread().getContextClassLoader
try {
cl.loadClass("scala.runtime.Scala3RunTime")
true
} catch {
case _: ClassNotFoundException =>
false
}
}
}