Packages

object Results

Source
Results.scala
Linear Supertypes
AnyRef, Any
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Results
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class Result extends AnyRef

    A result from the Interpreter interpreting one line of input.

Value Members

  1. object Error extends Result with Product with Serializable

    The line was erroneous in some way.

  2. object Incomplete extends Result with Product with Serializable

    The input was incomplete.

    The input was incomplete. The caller should request more input.

  3. object Success extends Result with Product with Serializable

    The line was interpreted successfully.