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. trait IdentifierFactory extends AnyRef
    Definition Classes
    HasUniqueIdentifiers
  3. case class Application(f: ValueArg, args: Seq[ValueArg], loc: Location) extends ValueExpression with Product with Serializable
  4. final case class BoolValue(value: Boolean, loc: Location) extends PrimitiveValue with Product with Serializable
  5. case class BuiltInOperator(value: PrimitiveOperator, loc: Location) extends PrimitiveValue with Product with Serializable
  6. case class Closure(function: Function, capturedEnvironment: Map[TesslaCore.Identifier, Lazy[ValueOrError]], loc: Location) extends Value with Product with Serializable
  7. final case class Const(value: ValueOrError, stream: StreamRef, loc: Location) extends Expression with Product with Serializable
  8. final case class Ctf(value: ICompositeDefinition, loc: Location) extends PrimitiveValue with Product with Serializable
  9. final case class Default(stream: StreamRef, default: ValueOrError, loc: Location) extends Expression with Product with Serializable
  10. final case class DefaultFrom(valueStream: StreamRef, defaultStream: StreamRef, loc: Location) extends Expression with Product with Serializable
  11. final case class DelayedLast(values: StreamRef, delays: StreamRef, loc: Location) extends Expression with Product with Serializable
  12. final case class Error(error: TesslaError) extends ValueArg with ValueOrError with Product with Serializable
  13. sealed abstract class Expression extends AnyRef
  14. final case class Function(parameters: Seq[TesslaCore.Identifier], scope: Map[TesslaCore.Identifier, ValueExpression], body: ValueArg, loc: Location) extends ValueExpression with Product with Serializable
  15. final case class InputStream(name: String, loc: Location) extends StreamRef with Product with Serializable
  16. final case class IntValue(value: BigInt, loc: Location) extends PrimitiveValue with Product with Serializable
  17. final case class Last(values: StreamRef, clock: StreamRef, loc: Location) extends Expression with Product with Serializable
  18. final case class Lift(f: ValueArg, args: Seq[StreamRef], loc: Location) extends Expression with Product with Serializable
  19. case class MapType(keyType: ValueType, valueType: ValueType) extends ValueType with Product with Serializable
  20. case class MemberAccess(obj: ValueArg, member: String, loc: Location) extends ValueExpression with Product with Serializable
  21. final case class Merge(stream1: StreamRef, stream2: StreamRef, loc: Location) extends Expression with Product with Serializable
  22. final case class Nil(loc: Location) extends StreamRef with Product with Serializable
  23. case class ObjectCreation(members: Map[String, ValueArg], loc: Location) extends ValueArg with Product with Serializable
  24. case class ObjectType(memberTypes: Map[String, ValueType]) extends ValueType with Product with Serializable
  25. case class OptionType(elementType: ValueType) extends ValueType with Product with Serializable
  26. sealed abstract class PrimitiveValue extends Value
  27. case class SetType(elementType: ValueType) extends ValueType with Product with Serializable
  28. final case class SignalLift(f: PrimitiveOperator, args: Seq[StreamRef], loc: Location) extends Expression with Product with Serializable
  29. final case class Specification(streams: Seq[(TesslaCore.Identifier, Expression)], inStreams: Seq[(String, StreamType, Location)], outStreams: Seq[(String, StreamRef, StreamType)]) extends Product with Serializable
  30. final case class Stream(id: TesslaCore.Identifier, loc: Location) extends StreamRef with Product with Serializable
  31. sealed abstract class StreamRef extends AnyRef
  32. case class StreamType(elementType: ValueType) extends Type with Product with Serializable
  33. final case class StringValue(value: String, loc: Location) extends PrimitiveValue with Product with Serializable
  34. final case class TesslaMap(value: Map[Value, Value], loc: Location) extends PrimitiveValue with Product with Serializable
  35. final case class TesslaObject(value: Map[String, Value], loc: Location) extends PrimitiveValue with Product with Serializable
  36. final case class TesslaOption(value: Option[Value], loc: Location) extends PrimitiveValue with Product with Serializable
  37. final case class TesslaSet(value: Set[Value], loc: Location) extends PrimitiveValue with Product with Serializable
  38. final case class Time(stream: StreamRef, loc: Location) extends Expression with Product with Serializable
  39. sealed abstract class Type extends AnyRef
  40. final case class Unit(loc: Location) extends PrimitiveValue with Product with Serializable
  41. sealed abstract class Value extends ValueArg with ValueOrError
  42. sealed abstract class ValueArg extends AnyRef
  43. sealed abstract class ValueExpression extends AnyRef
  44. case class ValueExpressionRef(id: TesslaCore.Identifier) extends ValueArg with Product with Serializable
  45. sealed trait ValueOrError extends ValueArg
  46. 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(): scala.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(): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): scala.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(): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): scala.Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  20. object BoolType extends ValueType with Product with Serializable
  21. object CtfType extends ValueType with Product with Serializable
  22. object FunctionType extends ValueType with Product with Serializable
  23. object IntType extends ValueType with Product with Serializable
  24. object StringType extends ValueType with Product with Serializable
  25. object UnitType extends ValueType with Product with Serializable

Inherited from HasUniqueIdentifiers

Inherited from AnyRef

Inherited from Any

Ungrouped