object EXPR
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EXPR
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class Attribute(value: EXPR, attr: Identifier, ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class Base58Str(s: String) extends EXPR with Product with Serializable
- case class BinOp(left: EXPR, op: OPERATOR, right: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- sealed trait Bool extends EXPR
- case class BoolOp(op: BOOL_OP, values: List[EXPR]) extends EXPR with Product with Serializable
- case class Call(func: EXPR, args: List[EXPR], keywords: List[Keyword], tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class Compare(left: EXPR, ops: List[COMP_OP], comparators: List[EXPR]) extends EXPR with Product with Serializable
- case class Declaration(target: EXPR, typeOpt: Option[TypeIdentifier]) extends EXPR with Product with Serializable
- case class ESDictNode(keys: List[EXPR], values: List[EXPR], tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class ESList(elts: List[EXPR], ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class ESSet(elts: List[EXPR], tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class ESTuple(elts: List[EXPR], ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class Exists(coll: EXPR, predicate: EXPR) extends EXPR with Transformer with Product with Serializable
- case class Get(opt: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Transformer with Product with Serializable
- case class IfExp(test: EXPR, body: EXPR, orelse: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class IntConst(n: Int) extends EXPR with Num with Product with Serializable
- case class IsDefined(opt: EXPR) extends EXPR with Transformer with Product with Serializable
- case class Lambda(args: Arguments, body: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class LongConst(n: Long) extends EXPR with Num with Product with Serializable
- case class Map(coll: EXPR, func: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Transformer with Product with Serializable
- case class Name(id: Identifier, ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- sealed trait Num extends EXPR
- case class SchemaMatching(name: Identifier, schemaId: Identifier) extends EXPR with Product with Serializable
- case class SizeOf(coll: EXPR) extends EXPR with Transformer with Product with Serializable
- case class Str(s: String) extends EXPR with Product with Serializable
- case class Subscript(value: EXPR, slice: SLICE, ctx: EXPR_CTX, tpeOpt: Option[ESType] = None) extends EXPR with Product with Serializable
- case class Sum(coll: EXPR, tpeOpt: Option[ESType] = None) extends EXPR with Transformer with Product with Serializable
- sealed trait Transformer extends EXPR
- case class TypeMatching(name: Identifier, tipe: TypeIdentifier) extends EXPR with Product with Serializable
- case class UnaryOp(op: UNARY_OP, operand: EXPR, tpeOpt: Option[ESType] = None) extends EXPR 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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @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
- 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( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- object False extends EXPR with Bool with Product with Serializable
- object GenericCond extends EXPR with Product with Serializable
- object True extends EXPR with Bool with Product with Serializable