scala.tools.nsc.interpreter.Results.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.scala-compiler
Show all versions of org.apache.servicemix.bundles.scala-compiler
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
/* NSC -- new Scala compiler
* Copyright 2005-2011 LAMP/EPFL
* @author Martin Odersky
*/
package scala.tools.nsc
package interpreter
object Results {
/** A result from the Interpreter interpreting one line of input. */
abstract sealed class Result
/** The line was interpreted successfully. */
case object Success extends Result
/** The line was erroneous in some way. */
case object Error extends Result
/** The input was incomplete. The caller should request more input.
*/
case object Incomplete extends Result
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy