object Expr

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Expr
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class $(offset: Int) extends Expr with Product with Serializable
  2. case class Apply(offset: Int, value: Expr, args: Args) extends Expr with Product with Serializable
  3. case class Args(args: Seq[(Option[String], Expr)]) extends Product with Serializable
  4. case class Arr(offset: Int, value: Seq[Expr]) extends Expr with Product with Serializable
  5. case class AssertExpr(offset: Int, asserted: AssertStmt, returned: Expr) extends Expr with Product with Serializable
  6. case class BinaryOp(offset: Int, lhs: Expr, op: Op, rhs: Expr) extends Expr with Product with Serializable
  7. case class Bind(offset: Int, name: Int, args: Option[Params], rhs: Expr) extends Product with Serializable
  8. case class Comp(offset: Int, value: Expr, first: ForSpec, rest: Seq[CompSpec]) extends Expr with Product with Serializable
  9. sealed trait CompSpec extends Expr
  10. case class Error(offset: Int, value: Expr) extends Expr with Product with Serializable
  11. case class False(offset: Int) extends Expr with Product with Serializable
  12. sealed trait FieldName extends AnyRef
  13. case class ForSpec(offset: Int, name: Int, cond: Expr) extends CompSpec with Product with Serializable
  14. case class Function(offset: Int, params: Params, body: Expr) extends Expr with Product with Serializable
  15. case class Id(offset: Int, value: Int) extends Expr with Product with Serializable
  16. case class IfElse(offset: Int, cond: Expr, then: Expr, else: Option[Expr]) extends Expr with Product with Serializable
  17. case class IfSpec(offset: Int, cond: Expr) extends CompSpec with Product with Serializable
  18. case class Import(offset: Int, value: String) extends Expr with Product with Serializable
  19. case class ImportStr(offset: Int, value: String) extends Expr with Product with Serializable
  20. case class LocalExpr(offset: Int, bindings: Seq[Bind], returned: Expr) extends Expr with Product with Serializable
  21. case class Lookup(offset: Int, value: Expr, index: Expr) extends Expr with Product with Serializable
  22. sealed trait Member extends AnyRef
  23. case class Null(offset: Int) extends Expr with Product with Serializable
  24. case class Num(offset: Int, value: Double) extends Expr with Product with Serializable
  25. case class Obj(offset: Int, value: ObjBody) extends Expr with Product with Serializable
  26. sealed trait ObjBody extends AnyRef
  27. case class ObjExtend(offset: Int, base: Expr, ext: ObjBody) extends Expr with Product with Serializable
  28. case class Params(args: IndexedSeq[(String, Option[Expr], Int)]) extends Product with Serializable
  29. case class Parened(offset: Int, value: Expr) extends Expr with Product with Serializable
  30. case class Select(offset: Int, value: Expr, name: String) extends Expr with Product with Serializable
  31. case class Self(offset: Int) extends Expr with Product with Serializable
  32. case class Slice(offset: Int, value: Expr, start: Option[Expr], end: Option[Expr], stride: Option[Expr]) extends Expr with Product with Serializable
  33. case class Str(offset: Int, value: String) extends Expr with Product with Serializable
  34. case class Super(offset: Int) extends Expr with Product with Serializable
  35. case class True(offset: Int) extends Expr with Product with Serializable
  36. case class UnaryOp(offset: Int, op: Op, value: Expr) extends Expr with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. object BinaryOp extends Serializable
  20. object FieldName
  21. object Member
  22. object ObjBody
  23. object UnaryOp extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped