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

izumi.idealingua.compiler.ShutdownImpl.scala Maven / Gradle / Ivy

The newest version!
package izumi.idealingua.compiler

object ShutdownImpl extends Shutdown {
  private val log = CompilerLog.Default
  def shutdown(message: String): Nothing = {
    log.log(message)
    System.out.flush()
    System.err.flush()
    System.exit(1)
    throw new IllegalArgumentException(message)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy