object LambdaTree
Ordering
- Alphabetic
- By Inheritance
Inherited
- LambdaTree
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
case class
AddOp
() extends Op with Product with Serializable
Primitive integer addition.
-
case class
App
(e1: Exp, e2: Exp) extends Exp with Product with Serializable
Application of l to r.
-
case class
Bind
(i: Idn, e: Exp) extends Product with Serializable
A single binding from a set of parallel bindings (Letp).
A single binding from a set of parallel bindings (Letp). No type information because these bindings are only used inside the parallel evaluation mechanisms.
-
sealed abstract
class
Exp
extends TreeNode
Expressions.
-
case class
FunType
(t1: Type, t2: Type) extends Type with Product with Serializable
Function type from an argument type arg to a result type res.
-
type
Idn = String
Identifiers are represented as strings.
-
case class
IntType
() extends Type with Product with Serializable
Primitive integer type.
-
case class
Lam
(i: Idn, t: Type, e: Exp) extends Exp with Product with Serializable
Lambda expressions binding name of type tipe within body.
-
case class
Let
(i: Idn, t: Type, e1: Exp, e2: Exp) extends Exp with Product with Serializable
Bind name of type tipe to the value of exp in body.
-
case class
Letp
(bs: Seq[Bind], e: Exp) extends Exp with Product with Serializable
Parallel bindings in body.
-
case class
NoType
() extends Type with Product with Serializable
No type has been specified.
-
case class
Num
(n: Int) extends Exp with Product with Serializable
Numeric expressions.
-
sealed abstract
class
Op
extends AnyRef
Primitive binary operators.
-
case class
Opn
(e1: Exp, o: Op, e2: Exp) extends Exp with Product with Serializable
An application of a primitive binary operation.
-
case class
SubOp
() extends Op with Product with Serializable
Primitive integer subtraction.
-
sealed abstract
class
Type
extends TreeNode
Types.
-
case class
UnknownType
() extends Type with Product with Serializable
The entity cannot be typed.
-
case class
Var
(i: Idn) extends Exp with Product with Serializable
Variable expressions.
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
- def App(s1: ⇒ Strategy, s2: ⇒ Strategy): Strategy
- def Bind(s1: ⇒ Strategy, s2: ⇒ Strategy): Strategy
- def Lam(s1: ⇒ Strategy, s2: ⇒ Strategy, s3: ⇒ Strategy): Strategy
- def Let(s1: ⇒ Strategy, s2: ⇒ Strategy, s3: ⇒ Strategy, s4: ⇒ Strategy): Strategy
- def Letp(s1: ⇒ Strategy, s2: ⇒ Strategy): Strategy
- def Opn(s1: ⇒ Strategy, s2: ⇒ Strategy, s3: ⇒ Strategy): Strategy
- def Var(s1: ⇒ Strategy): Strategy
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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( ... )