Packages

case class FrameLet(variable: Identifier, bindings: List[(Identifier, V)], toeval: List[(Identifier, SchemeExp)], body: List[SchemeExp], env: Env) extends SchemeFrame with Product with Serializable

Linear Supertypes
Serializable, Serializable, SchemeFrame, Frame, MemoHashCode, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FrameLet
  2. Serializable
  3. Serializable
  4. SchemeFrame
  5. Frame
  6. MemoHashCode
  7. Product
  8. Equals
  9. AnyRef
  10. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FrameLet(variable: Identifier, bindings: List[(Identifier, V)], toeval: List[(Identifier, SchemeExp)], body: List[SchemeExp], env: Env)

Value Members

  1. val bindings: List[(Identifier, V)]
  2. val body: List[SchemeExp]
  3. val env: Env
  4. def hashCode(): Int

    Memoized default hash code

    Memoized default hash code

    Definition Classes
    MemoHashCode → AnyRef → Any
  5. def subsumes(that: Frame): Boolean
    Definition Classes
    Frame
  6. def toString(): String
    Definition Classes
    SchemeFrame → AnyRef → Any
  7. val toeval: List[(Identifier, SchemeExp)]
  8. val variable: Identifier