object Results

Source
Results.scala
Linear Supertypes
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. Protected

Type Members

  1. sealed abstract class Result extends AnyRef

    A result from the Interpreter interpreting one line of input.

Value Members

  1. case object Error extends Result with Product with Serializable

    The line was erroneous in some way.

  2. case object Incomplete extends Result with Product with Serializable

    The input was incomplete.

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

  3. case object Success extends Result with Product with Serializable

    The line was interpreted successfully.