object IR
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- IR
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class And(left: (WithIR.this)#IR, right: (WithIR.this)#IR) extends Monadic with Product with Serializable
- case class Block(head: scala.reflect.macros.Universe.Tree, tail: Monadic) extends Monadic with Product with Serializable
- case class Fail(error: (WithIR.this)#IR) extends Monadic with Product with Serializable
- case class FlatMap(monad: Monadic, valSymbol: Option[scala.reflect.macros.Universe.TermName], body: Monadic) extends Monadic with Product with Serializable
- case class Foreach(list: (WithIR.this)#IR, listType: scala.reflect.macros.Universe.Type, elementSymbol: scala.reflect.macros.Universe.TermName, body: (WithIR.this)#IR) extends Monadic with Product with Serializable
- case class If(cond: (WithIR.this)#IR, ifTrue: (WithIR.this)#IR, ifFalse: (WithIR.this)#IR) extends Monadic with Product with Serializable
- sealed trait Leaf extends (WithIR.this)#IR
- case class Map(monad: Monadic, valSymbol: Option[scala.reflect.macros.Universe.TermName], body: Pure) extends Monadic with Product with Serializable
- case class Match(scrutinee: (WithIR.this)#IR, caseDefs: List[CaseDef]) extends Monadic with Product with Serializable
- class Monad extends Monadic with Leaf
- sealed trait Monadic extends (WithIR.this)#IR
- case class Or(left: (WithIR.this)#IR, right: (WithIR.this)#IR) extends Monadic with Product with Serializable
- case class Parallel(originalExpr: scala.reflect.macros.Universe.Tree, monads: List[(Monadic, scala.reflect.macros.Universe.TermName, scala.reflect.macros.Universe.Type)], body: Leaf) extends Monadic with Product with Serializable
- case class Pure(code: scala.reflect.macros.Universe.Tree) extends (WithIR.this)#IR with Leaf with Product with Serializable
- case class Try(tryBlock: (WithIR.this)#IR, cases: List[CaseDef], resultType: scala.reflect.macros.Universe.Type, finallyBlock: Option[(WithIR.this)#IR]) extends Monadic with Product with Serializable
- case class Unsafe(body: (WithIR.this)#IR) extends Monadic with Product with Serializable
- case class ValDef(originalStmt: scala.reflect.macros.Universe.Tree, symbol: scala.reflect.macros.Universe.TermName, assignment: (WithIR.this)#IR, bodyUsingVal: (WithIR.this)#IR) extends Monadic with Product with Serializable
- case class While(cond: (WithIR.this)#IR, body: (WithIR.this)#IR) extends Monadic with Product with Serializable
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[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- 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(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object FlatMap extends Serializable
- object Map extends Serializable
- object Match extends Serializable
- object Monad