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

ammonite.kernel.package.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package ammonite.kernel

import scalaz.ValidationNel

package object kernel {

  private[ammonite] type ClassFiles = Vector[(String, Array[Byte])]

  private[ammonite] type SuccessfulCompilation =
    (List[LogInfo], List[LogWarning], ClassFiles, Imports)

  private[ammonite] type CompilerOutput =
    ValidationNel[LogError, SuccessfulCompilation]

  private[ammonite] val generatedMain = "$main"

  private[ammonite] val newLine = System.lineSeparator()

  private[ammonite] val rootStr = "_root_"

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy