object TesslaCore extends HasUniqueIdentifiers

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TesslaCore
  2. HasUniqueIdentifiers
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Identifier extends AnyRef
    Definition Classes
    HasUniqueIdentifiers
  2. abstract class IdentifierFactory extends AnyRef
    Definition Classes
    HasUniqueIdentifiers
  3. type Annotation = TypedTessla.Annotation
  4. case class Application(f: Lazy[ValueArg], args: Seq[Lazy[ValueArg]], loc: Location) extends ValueExpression with Product with Serializable
  5. sealed abstract class Arg extends AnyRef
  6. final case class BoolValue(value: Boolean, loc: Location) extends PrimitiveValue with Product with Serializable
  7. case class BuiltInOperator(name: String, loc: Location) extends PrimitiveValue with Product with Serializable
  8. case class BuiltInType(name: String, typeArgs: Seq[ValueType]) extends ValueType with Product with Serializable
  9. case class Closure(function: Function, capturedEnvironment: Map[TesslaCore.Identifier, Lazy[ValueOrError]], loc: Location) extends Value with Product with Serializable
  10. final case class Ctf(value: ICompositeDefinition, loc: Location) extends PrimitiveValue with Product with Serializable
  11. final case class CurriedPrimitiveOperator(name: String, args: Map[Int, ValueOrError] = Map()) extends Product with Serializable
  12. final case class CustomBuiltInCall(name: String, args: Seq[Arg], loc: Location) extends Expression with Product with Serializable
  13. final case class Default(stream: StreamRef, default: ValueOrError, loc: Location) extends Expression with Product with Serializable
  14. final case class DefaultFrom(valueStream: StreamRef, defaultStream: StreamRef, loc: Location) extends Expression with Product with Serializable
  15. final case class Delay(delays: StreamRef, resets: StreamRef, loc: Location) extends Expression with Product with Serializable
  16. final case class Error(error: TesslaError) extends Arg with ValueOrError with Product with Serializable
  17. sealed abstract class Expression extends AnyRef
  18. final case class FloatValue(value: Double, loc: Location) extends PrimitiveValue with Product with Serializable
  19. final case class Function(parameters: Seq[TesslaCore.Identifier], body: Map[TesslaCore.Identifier, ValueExpressionDescription], result: ValueArg, loc: Location) extends ValueExpression with Product with Serializable
  20. case class IfThenElse(cond: ValueArg, thenCase: Lazy[ValueArg], elseCase: Lazy[ValueArg], loc: Location) extends ValueExpression with Product with Serializable
  21. case class InStreamDescription(name: String, typ: StreamType, annotations: Seq[Annotation], loc: Location) extends Product with Serializable
  22. final case class InputStream(name: String, typ: StreamType, loc: Location) extends StreamRef with Product with Serializable
  23. final case class IntValue(value: BigInt, loc: Location) extends PrimitiveValue with Product with Serializable
  24. final case class Last(values: StreamRef, clock: StreamRef, loc: Location) extends Expression with Product with Serializable
  25. final case class Lift(f: Function, args: Seq[StreamRef], loc: Location) extends Expression with Product with Serializable
  26. case class MemberAccess(obj: ValueArg, member: String, loc: Location) extends ValueExpression with Product with Serializable
  27. final case class Nil(typ: StreamType, loc: Location) extends StreamRef with Product with Serializable
  28. case class ObjectCreation(members: Map[String, ValueArg], loc: Location) extends ValueArg with Product with Serializable
  29. case class ObjectType(memberTypes: Map[String, ValueType]) extends ValueType with Product with Serializable
  30. case class OutStreamDescription(nameOpt: Option[String], stream: StreamRef, typ: StreamType) extends Product with Serializable
  31. sealed abstract class PrimitiveValue extends Value
  32. final case class SignalLift(op: CurriedPrimitiveOperator, args: Seq[StreamRef], loc: Location) extends Expression with Product with Serializable
  33. final case class Specification(streams: Seq[StreamDescription], inStreams: Seq[InStreamDescription], outStreams: Seq[OutStreamDescription], identifierCount: Long) extends Product with Serializable
  34. final case class Stream(id: TesslaCore.Identifier, typ: StreamType, loc: Location) extends StreamRef with Product with Serializable
  35. case class StreamDescription(id: TesslaCore.Identifier, expression: Expression, typ: StreamType, annotations: Seq[Annotation]) extends Product with Serializable
  36. sealed abstract class StreamRef extends Arg
  37. case class StreamType(elementType: ValueType) extends Type with Product with Serializable
  38. final case class StringValue(value: String, loc: Location) extends PrimitiveValue with Product with Serializable
  39. final case class TesslaList(value: IndexedSeq[Value], typ: ValueType, loc: Location) extends PrimitiveValue with Product with Serializable
  40. final case class TesslaMap(value: Map[Value, Value], typ: ValueType, loc: Location) extends PrimitiveValue with Product with Serializable
  41. final case class TesslaObject(value: Map[String, ValueOrError], loc: Location) extends PrimitiveValue with Product with Serializable
  42. final case class TesslaOption(value: Option[ValueOrError], typ: ValueType, loc: Location) extends PrimitiveValue with Product with Serializable
  43. final case class TesslaSet(value: Set[Value], typ: ValueType, loc: Location) extends PrimitiveValue with Product with Serializable
  44. final case class Time(stream: StreamRef, loc: Location) extends Expression with Product with Serializable
  45. sealed abstract class Type extends AnyRef
  46. sealed abstract class Value extends Arg with ValueOrError
  47. sealed trait ValueArg extends AnyRef
  48. sealed abstract class ValueExpression extends AnyRef
  49. case class ValueExpressionDescription(exp: ValueExpression, typ: ValueType) extends Product with Serializable
  50. case class ValueExpressionRef(id: TesslaCore.Identifier) extends ValueArg with Product with Serializable
  51. sealed trait ValueOrError extends Arg with ValueArg
  52. sealed abstract class ValueType extends Type

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() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  20. object FunctionType extends ValueType with Product with Serializable
  21. object NeverType extends ValueType with Product with Serializable

    The type of error expressions

  22. object UnresolvedGenericType extends ValueType with Product with Serializable

    The type of definitions inside a lifted generic function whose type depends on the function's type parameters.

Inherited from HasUniqueIdentifiers

Inherited from AnyRef

Inherited from Any

Ungrouped