package tessla

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. abstract class AbstractTesslaParser[Item, Result] extends Translator[Result]
  2. sealed abstract class BuiltIn extends AnyRef
  3. class ConstantEvaluator extends TranslationPhase[tessla.TypedTessla.Specification, Specification]
  4. class ConstantEvaluatorWorker extends Translator[Specification] with tessla.TesslaCore.IdentifierFactory
  5. class CurrySignalLift extends Translator[Specification]
  6. class CycleDetection extends Translator[Specification]

    Sort the definition in reverse topographical order ignoring the edges of a last's first operand and both operands of a delayed last (so each stream will appear before any stream that uses it in the same timestamp) and produce an error for any recursion that does not go through a last.

    Sort the definition in reverse topographical order ignoring the edges of a last's first operand and both operands of a delayed last (so each stream will appear before any stream that uses it in the same timestamp) and produce an error for any recursion that does not go through a last.

    The reverse topological sort will be useful for code generation strategies that put the actions within one time stamp in a linear order. The errors for lastless recursions are useful because any recursion without last would cause an infinite loop in the interpreter (and either an infinite loop or an error during codegen in other backends).

  7. trait Diagnostic extends AnyRef
  8. abstract class FlatTessla extends HasUniqueIdentifiers
  9. class Flattener extends Translator[tessla.FlatTessla.Specification] with tessla.FlatTessla.IdentifierFactory
  10. trait HasUniqueIdentifiers extends AnyRef
  11. class InputTraceLexer extends Lexer
  12. class InputTraceParser extends Parser
  13. class InputTraceParserBaseVisitor[T] extends AbstractParseTreeVisitor[T] with InputTraceParserVisitor[T]

    This class provides an empty implementation of InputTraceParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.

  14. trait InputTraceParserVisitor[T] extends ParseTreeVisitor[T]

    This interface defines a complete generic visitor for a parse tree produced by InputTraceParser.

  15. sealed abstract class Location extends AnyRef
  16. class RemoveUnusedDefinitions extends Translator[Specification]
  17. class TesslaLexer extends Lexer
  18. class TesslaParser extends AbstractTesslaParser[Statement, Specification]
  19. class TesslaSyntax extends Parser
  20. class TesslaSyntaxBaseVisitor[T] extends AbstractParseTreeVisitor[T] with TesslaSyntaxVisitor[T]

    This class provides an empty implementation of TesslaSyntaxVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.

  21. trait TesslaSyntaxVisitor[T] extends ParseTreeVisitor[T]

    This interface defines a complete generic visitor for a parse tree produced by TesslaSyntax.

  22. sealed abstract class TimeUnit extends AnyRef
  23. trait TranslationPhase[-T, +U] extends (T) ⇒ Result[U]

    Trait representing a phase of the translation process.

    Trait representing a phase of the translation process.

    Note that this trait contains mutable members and should only be extended by classes, not objects.

    T

    The type of representation that this phase will be applied to

    U

    The result of applying this phase

  24. class TypeChecker extends Translator[tessla.TypedTessla.Specification] with tessla.TypedTessla.IdentifierFactory
  25. trait WithDebugOutput extends AnyRef

Ungrouped