trait Interpreter extends AnyRef
Represents the standard interface for an interpreter.
- Alphabetic
- By Inheritance
- Interpreter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
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
-
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
-
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
-
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
-
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
-
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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )