ammonite

repl

package repl

Visibility
  1. Public
  2. All

Type Members

  1. case class ArgParseException(name: String, value: String, typeName: String, cause: Throwable) extends Exception with Product with Serializable

  2. case class Bind[T](name: String, value: T)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]) extends Product with Serializable

    Models a binding of a value to a typed name, and is passed into the REPL so it can re-create the bindings inside the REPL's scope

  3. case class Catching(handler: PartialFunction[Throwable, Failing]) extends Product with Serializable

    Fake for-comprehension generator to catch errors and turn them into Res.Failures

  4. trait Cell[T] extends AnyRef

  5. case class Colors(prompt: Ref[String], ident: Ref[String], type: Ref[String], literal: Ref[String], prefix: Ref[String], comment: Ref[String], keyword: Ref[String], selected: Ref[String], error: Ref[String], reset: Ref[String]) extends Product with Serializable

    A set of colors used to highlight the miscellanious bits of the REPL.

  6. class CompilationError extends Exception

    Exception for reporting script compilation failures

  7. case class Evaluated(wrapper: String, imports: Seq[ImportData]) extends Product with Serializable

  8. class History extends IndexedSeq[String] with IndexedSeqLike[String, History]

  9. case class ImportData(fromName: String, toName: String, wrapperName: String, prefix: String) extends Product with Serializable

  10. trait IvyConstructor extends AnyRef

  11. trait Ref[T] extends StableRef[T]

  12. class Repl extends AnyRef

  13. sealed abstract class Res[+T] extends AnyRef

    The result of a single pass through the ammonite REPL.

  14. trait StableRef[T] extends AnyRef

    Encapsulates a read-write cell that can be passed around

  15. trait Storage extends AnyRef

    Trait for the interface of common persistent storage.

Value Members

  1. object Cell

  2. object Colors extends Serializable

  3. object Ex

    Nice pattern matching for chained exceptions

  4. object History

  5. object IvyConstructor extends IvyConstructor

  6. object IvyThing

    Resolve artifacts from Ivy.

  7. object Main

    The various entry-points to the Ammonite repl

  8. object Parsers

  9. object Ref

  10. object Repl

  11. object Res

  12. object ScriptInit

    Code used to de-serialize command-line arguments when calling an Ammonite script.

  13. object Storage

  14. object Timer

  15. object Util

  16. package frontend

  17. package interp

Ungrouped