Trait

ammonite.repl

ReplAPI

Related Doc: package repl

Permalink

trait ReplAPI extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ReplAPI
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. implicit abstract def codeColorsImplicit: CodeColors

    Permalink
  2. abstract def compiler: Global

    Permalink

    Access the compiler to do crazy things if you really want to!

  3. abstract val frontEnd: Ref[FrontEnd]

    Permalink

    The front-end REPL used to take user input.

    The front-end REPL used to take user input. Modifiable!

  4. abstract def fullHistory: History

    Permalink

    History of commands that have been entered into the shell, including previous sessions

  5. abstract def fullImports: Imports

    Permalink

    Shows all imports added that bring values into scope for the commands a user runs; *includes* imports from the built-in predef and user predef files

  6. abstract def height: Int

    Permalink

    Current height of the terminal

  7. abstract def help: String

    Permalink

    Display help text if you don't know how to use the REPL

  8. abstract def history: History

    Permalink

    History of commands that have been entered into the shell during the current session

  9. abstract def imports: Imports

    Permalink

    Shows the imports added to scope by the commands a user has entered so far; *excludes* imports from the built-in predef and user predef files

  10. abstract def lastException: Throwable

    Permalink

    The last exception that was thrown in the REPL; null if nothing has yet been thrown.

    The last exception that was thrown in the REPL; null if nothing has yet been thrown. Useful if you want additional information from the thrown exception than the printed stack trace (e.g. many exceptions have additional metadata attached) or if you want to show the stack trace on an exception that doesn't normally print it (e.g. seeing the stack when a Ctrl-C interrupt happened) via lastException.printStackTrace.

  11. abstract def load: ReplLoad

    Permalink
  12. abstract def newCompiler(): Unit

    Permalink

    Throw away the current scala.tools.nsc.Global and get a new one

  13. abstract val pprinter: Ref[PPrinter]

    Permalink
  14. abstract val prompt: Ref[String]

    Permalink

    Read/writable prompt for the shell.

    Read/writable prompt for the shell. Use this to change the REPL prompt at any time!

  15. abstract def sess: Session

    Permalink

    Functions that can be used to manipulate the current REPL session: check-pointing progress, reverting to earlier checkpoints, or deleting checkpoints by name.

    Functions that can be used to manipulate the current REPL session: check-pointing progress, reverting to earlier checkpoints, or deleting checkpoints by name.

    Frames get pushed on a stack; by default, a saved frame is accessible simply by calling load. If you provide a name when saveing a checkpoint, it can later be loaded directly by providing the same name to load

    Un-named checkpoints are garbage collected, together with their classloader and associated data, when they are no longer accessible due to restore. Named checkpoints are kept forever; call delete on them if you really want them to go away.

  16. abstract def show(t: Any, width: Integer = null, height: Integer = null, indent: Integer = null): Unit

    Permalink

    Lets you configure the pretty-printing of a value.

    Lets you configure the pretty-printing of a value. By default, it simply disables truncation and prints the entire thing, but you can set other parameters as well if you want.

  17. abstract def show(t: Any): Unit

    Permalink
  18. implicit abstract def tprintColorsImplicit: TPrintColors

    Permalink

    Controls how things are pretty-printed in the REPL.

    Controls how things are pretty-printed in the REPL. Feel free to shadow this with your own definition to change how things look

  19. abstract def typeOf[T](t: ⇒ T)(implicit arg0: scala.reflect.api.JavaUniverse.WeakTypeTag[T]): scala.reflect.api.JavaUniverse.Type

    Permalink

    Get the Type object representing the type of t.

    Get the Type object representing the type of t. Useful for finding what its methods are and what you can do with it

  20. abstract def typeOf[T](implicit arg0: scala.reflect.api.JavaUniverse.WeakTypeTag[T]): scala.reflect.api.JavaUniverse.Type

    Permalink

    Get the Type object of T.

    Get the Type object of T. Useful for finding what its methods are and what you can do with it

  21. abstract def width: Int

    Permalink

    Current width of the terminal

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. implicit def pprinterImplicit: PPrinter

    Permalink
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped