Packages

p

com.daml.codegen

dependencygraph

package dependencygraph

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed abstract class BaseNode[+K, +A] extends AnyRef
  2. final case class CannotBuildGraphException(msg: String) extends RuntimeException with Product with Serializable
  3. sealed abstract class DependencyGraph[Iface, TmplI] extends AnyRef
  4. final case class Node[+K, +A](content: A, dependencies: List[K], collectDepError: Boolean) extends BaseNode[K, A] with Product with Serializable
  5. final case class OrderedDependencies[+K, +A](deps: Vector[(K, Node[K, A])], errors: List[UnsopportedTypeError]) extends Product with Serializable

    Ordered dependencies where the dependant node always comes after the dependency.

    Ordered dependencies where the dependant node always comes after the dependency.

    deps

    The ordered dependencies

    errors

    The errors that came up when producing the list

  6. final case class TemplateWrapper[+TmplI](template: TmplI) extends TypeDeclOrTemplateWrapper[TmplI] with Product with Serializable
  7. sealed abstract class TypeDeclOrTemplateWrapper[+TmplI] extends Product with Serializable
  8. final case class TypeDeclWrapper(typeDecl: FWT) extends TypeDeclOrTemplateWrapper[Nothing] with Product with Serializable

Value Members

  1. object DependencyGraph
  2. object Graph
  3. object TypeDeclOrTemplateWrapper extends Serializable
  4. case object UnknownPlaceholder extends BaseNode[Nothing, Nothing] with Product with Serializable

Ungrouped