ammonite.kernel.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ammonite-kernel_2.12 Show documentation
Show all versions of ammonite-kernel_2.12 Show documentation
Stripped down version of ammonite
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_"
}