object Tessla

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

Type Members

  1. case class Annotation(id: Identifier, arguments: Seq[Argument[ConstantExpression]], loc: Location) extends Product with Serializable
  2. case class AnnotationDefinition(id: Identifier, parameters: Seq[Parameter], loc: Location) extends Statement with Product with Serializable
  3. abstract class Argument[T <: HasLoc] extends HasLoc
  4. case class Block(definitions: Seq[Definition], expression: Expression, loc: Location) extends Expression with Product with Serializable
  5. sealed abstract class Body extends HasLoc
  6. case class BuiltInBody(id: Identifier, referenceImplementation: Option[Expression]) extends Body with Product with Serializable
  7. case class BuiltInType(id: Identifier) extends TypeBody with Product with Serializable
  8. sealed abstract class ConstantExpression extends HasLoc
  9. case class Definition(annotations: Seq[Annotation], id: Identifier, typeParameters: Seq[Identifier], parameters: Seq[Parameter], returnType: Option[Type], headerLoc: Location, body: Body, loc: Location) extends Statement with Product with Serializable
  10. sealed abstract class Expression extends HasLoc
  11. case class ExpressionBody(exp: Expression) extends Body with Product with Serializable
  12. case class FloatLiteral(value: Double) extends LiteralValue with Product with Serializable
  13. case class FunctionType(parameterTypes: Seq[Type], returnType: Type, loc: Location) extends Type with Product with Serializable
  14. case class Identifier(name: String, loc: Location) extends HasLoc with Product with Serializable
  15. case class In(id: Identifier, streamType: Type, annotations: Seq[Annotation], loc: Location) extends Statement with Product with Serializable
  16. case class IntLiteral(value: BigInt) extends LiteralValue with Product with Serializable
  17. case class Lambda(parameters: Seq[Parameter], headerLoc: Location, body: Expression, loc: Location) extends Expression with Product with Serializable
  18. case class Literal(value: LiteralValue, loc: Location) extends Expression with Product with Serializable
  19. sealed abstract class LiteralValue extends AnyRef
  20. case class MacroCall(mac: Expression, typeArgs: Seq[Type], args: Seq[Argument[Expression]], loc: Location) extends Expression with Product with Serializable
  21. case class MemberAccess(receiver: Expression, member: Identifier, loc: Location) extends Expression with Product with Serializable
  22. case class Module(id: Identifier, contents: Seq[Statement], loc: Location) extends Statement with Product with Serializable
  23. case class NamedArgument[T <: HasLoc](id: Identifier, expr: T) extends Argument[T] with Product with Serializable
  24. case class ObjectLiteral(members: Map[Identifier, Expression], loc: Location) extends Expression with Product with Serializable
  25. case class ObjectType(memberTypes: Map[Identifier, Type], isOpen: Boolean, loc: Location) extends Type with Product with Serializable
  26. case class Out(expr: Expression, id: Identifier, loc: Location) extends Statement with Product with Serializable
  27. case class OutAll(loc: Location) extends Statement with Product with Serializable
  28. case class Parameter(id: Identifier, parameterType: Option[Type]) extends HasLoc with Product with Serializable
  29. case class PositionalArgument[T <: HasLoc](expr: T) extends Argument[T] with Product with Serializable
  30. case class Print(expr: Expression, loc: Location) extends Statement with Product with Serializable
  31. case class SimpleType(id: Identifier) extends Type with Product with Serializable
  32. case class Specification(statements: Seq[Statement]) extends Product with Serializable
  33. sealed abstract class Statement extends HasLoc
  34. case class StaticIfThenElse(condition: Expression, thenCase: Expression, elseCase: Expression, loc: Location) extends Expression with Product with Serializable
  35. case class StringLiteral(value: String) extends LiteralValue with Product with Serializable
  36. case class TimeLiteral(value: BigInt, unit: TimeUnit) extends LiteralValue with Product with Serializable
  37. sealed abstract class Type extends HasLoc
  38. case class TypeAlias(typ: Type) extends TypeBody with Product with Serializable
  39. case class TypeApplication(id: Identifier, args: Seq[Type], loc: Location) extends Type with Product with Serializable
  40. sealed abstract class TypeBody extends AnyRef
  41. case class TypeDefinition(id: Identifier, typeParameters: Seq[Identifier], body: TypeBody, loc: Location) extends Statement with Product with Serializable
  42. case class Variable(id: Identifier) extends Expression 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. val binaryOperators: Map[String, String]
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def getId(statement: Statement): Option[Identifier]
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. val unaryOperators: Map[String, String]
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  23. object ConstantExpression
  24. object TimeLiteral extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped