All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.scala.sourcecode.TestUtil.scala Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
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
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy