abstract class TesslaAST[TypeAnnotation[_]] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TesslaAST
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TesslaAST()(implicit arg0: CommutativeApplicative[TypeAnnotation])

Type Members

  1. abstract type Annotations
  2. case class ApplicationExpression(applicable: ExpressionArg, args: ArraySeq[ExpressionArg], location: Location = Location.unknown) extends Expression with Product with Serializable
  3. abstract type DefinitionExpression <: ExpressionArg
  4. abstract type Evaluation >: StrictEvaluation.type
  5. sealed trait Expression extends ExpressionArg
  6. sealed trait ExpressionArg extends Locatable
  7. case class ExpressionRef(id: Identifier, tpe: TypeAnnotation[Type], location: Location = Location.unknown) extends ExpressionArg with Product with Serializable
  8. case class ExternExpression(name: String, tpe: TypeAnnotation[Type], location: Location = Location.unknown) extends Expression with Product with Serializable
  9. case class FloatLiteralExpression(value: Double, location: Location = Location.unknown) extends Expression with Product with Serializable
  10. case class FunctionExpression(typeParams: List[Identifier], params: List[(Identifier, Evaluation, TypeAnnotation[Type])], body: Map[Identifier, DefinitionExpression], result: ExpressionArg, location: Location = Location.unknown) extends Expression with Product with Serializable
  11. case class FunctionType(typeParams: List[Identifier], paramTypes: List[(Evaluation, Type)], resultType: Type, location: Location = Location.unknown) extends Type with Product with Serializable
  12. final class Identifier extends Locatable
  13. case class InstantiatedType(name: String, typeArgs: List[Type], location: Location = Location.unknown) extends Type with Product with Serializable
  14. case class IntLiteralExpression(value: BigInt, location: Location = Location.unknown) extends Expression with Product with Serializable
  15. case class RecordAccessorExpression(name: String, target: ExpressionArg, nameLocation: Location = Location.unknown, location: Location = Location.unknown) extends Expression with Product with Serializable
  16. case class RecordConstructorExpression(entries: Map[String, (ExpressionArg, Location)], location: Location = Location.unknown) extends Expression with Product with Serializable
  17. case class RecordType(entries: Map[String, (Type, Location)], location: Location = Location.unknown) extends Type with Product with Serializable
  18. case class Specification(in: Map[Identifier, (TypeAnnotation[Type], Annotations)], definitions: Map[Identifier, DefinitionExpression], out: List[(ExpressionRef, Annotations)], maxIdentifier: Long) extends Product with Serializable
  19. case class StringLiteralExpression(value: String, location: Location = Location.unknown) extends Expression with Product with Serializable
  20. sealed trait Type extends Locatable
  21. case class TypeApplicationExpression(applicable: ExpressionArg, typeArgs: List[Type], location: Location = Location.unknown) extends Expression with Product with Serializable
  22. case class TypeParam(name: Identifier, location: Location = Location.unknown) extends Type with Product with Serializable

Abstract Value Members

  1. abstract def withTypeAnnotation(s: (Boolean) => String, tpe: TypeAnnotation[Type], types: Boolean, mayNeedParens: Boolean): String

Concrete 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. val BoolType: InstantiatedType
  5. val FloatType: InstantiatedType
  6. val IntType: InstantiatedType
  7. val StringType: InstantiatedType
  8. val UnitType: RecordType
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def getOutputName(annotations: Annotations): Option[String]
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def indent(s: String): String
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def printAnnotationString(annotations: Annotations, options: PrintOptions): String
  22. def printAnnotations(annotations: Annotations, options: PrintOptions): List[String]
  23. def printWithTypeAndLocation(s: (Boolean) => String, tpe: TypeAnnotation[Type], location: Location, options: PrintOptions, types: Boolean, mayNeedTypeParens: Boolean, mayNeedLocationParens: Boolean): String
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. object Identifier

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped