org.scaladebugger.language.interpreters

Interpreter

trait Interpreter extends AnyRef

Represents the standard interface for an interpreter.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Interpreter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def bindFunctionWithParamDocs(name: String, parameters: Seq[(String, String)], function: (Map[String, Any]) ⇒ Any, documentation: String = null): Unit

    Binds a function into the interpreter.

    Binds a function into the interpreter.

    name

    The name to associate with the function

    parameters

    The collection of parameter names and documentation used by the function

    function

    The implementation of the function

    documentation

    Optional documentation for the function

  2. abstract def context: Context

    Represents the contextual information about the interpreter at a given point in time.

    Represents the contextual information about the interpreter at a given point in time.

    returns

    The context of the interpreter

  3. abstract def get(name: String): Option[Any]

    Retrieves the contents of a variable from the interpreter.

    Retrieves the contents of a variable from the interpreter.

    name

    The name of the variable whose contents to retrieve

    returns

    Some value if the variable exists, otherwise None

  4. abstract def interpret(code: String): Try[AnyRef]

    Interprets a segment code by parsing and evaluating it.

    Interprets a segment code by parsing and evaluating it.

    code

    The line of code to interpret

    returns

    The result of parsing and evaluation, yielding the last evaluated line of code

  5. abstract def interpretVerbosely(code: String): Try[Seq[Try[AnyRef]]]

    Interprets a segment of code by parsing and evaluating it.

    Interprets a segment of code by parsing and evaluating it.

    code

    The line of code to interpret

    returns

    The result of parsing and evaluation, yielding all evaluated lines of code

  6. abstract def put(name: String, value: Any): Unit

    Stores into the global namespace of the interpreter the provided value, creating a variable with the specified name.

    Stores into the global namespace of the interpreter the provided value, creating a variable with the specified name.

    name

    The name of the variable to contain the value

    value

    The value to store

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def bindFunction(name: String, parameters: Seq[String], function: (Map[String, Any]) ⇒ Any, documentation: String = null): Unit

    Binds a function into the interpreter.

    Binds a function into the interpreter.

    name

    The name to associate with the function

    parameters

    The collection of parameter names and documentation used by the function

    function

    The implementation of the function

    documentation

    Optional documentation for the function

  8. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  19. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped