case class Context(currentScope: Scope) extends Product with Serializable
Represents the context about the program state at a point in time.
- currentScope
The local scope of the program at a point in time
- Alphabetic
- By Inheritance
- Context
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
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
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val currentScope: Scope
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
functions: Seq[(Identifier, Function)]
Retrieves all available functions relative to this context.
Retrieves all available functions relative to this context.
- returns
The collection of functions and their associated names
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
interpretedFunctions: Seq[(Identifier, InterpretedFunction)]
Retrieves the available interpreted functions relative to this context.
Retrieves the available interpreted functions relative to this context.
- returns
The collection of interpreted functions and their associated names
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
nativeFunctions: Seq[(Identifier, NativeFunction)]
Retrieves the available native functions relative to this context.
Retrieves the available native functions relative to this context.
- returns
The collection of native functions and their associated names
-
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
variables: Seq[(Identifier, Expression)]
Retrieves all available variables relative to this context.
Retrieves all available variables relative to this context.
- returns
The collection of variables and their associated names
-
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( ... )