Module Cpath.CpathSource

type module_ = [
  1. | `Resolved of Resolved.module_
  2. | `Substituted of module_
  3. | `Local of Ident.path_module * bool
  4. | `Identifier of Odoc_model.Paths.Identifier.Path.Module.t * bool
  5. | `Root of string
  6. | `Forward of string
  7. | `Dot of module_ * string
  8. | `Module of Resolved.parent * Odoc_model.Names.ModuleName.t
  9. | `Apply of module_ * module_
]
and module_type = [
  1. | `Resolved of Resolved.module_type
  2. | `Substituted of module_type
  3. | `Local of Ident.module_type * bool
  4. | `Identifier of Odoc_model.Paths.Identifier.ModuleType.t * bool
  5. | `Dot of module_ * string
  6. | `ModuleType of Resolved.parent * Odoc_model.Names.ModuleTypeName.t
]
and type_ = [
  1. | `Resolved of Resolved.type_
  2. | `Substituted of type_
  3. | `Local of Ident.path_type * bool
  4. | `Identifier of Odoc_model.Paths.Identifier.Path.Type.t * bool
  5. | `Dot of module_ * string
  6. | `Type of Resolved.parent * Odoc_model.Names.TypeName.t
  7. | `Class of Resolved.parent * Odoc_model.Names.ClassName.t
  8. | `ClassType of Resolved.parent * Odoc_model.Names.ClassTypeName.t
]
and value = [
  1. | `Resolved of Resolved.value
  2. | `Dot of module_ * string
  3. | `Value of Resolved.parent * Odoc_model.Names.ValueName.t
]
and datatype = [
  1. | `Resolved of Resolved.datatype
  2. | `Substituted of datatype
  3. | `Local of Ident.path_datatype * bool
  4. | `Identifier of Odoc_model.Paths.Identifier.Path.DataType.t * bool
  5. | `Dot of module_ * string
  6. | `Type of Resolved.parent * Odoc_model.Names.TypeName.t
]
and constructor = [
  1. | `Resolved of Resolved.constructor
  2. | `Dot of datatype * string
  3. | `Constructor of Resolved.datatype * Odoc_model.Names.ConstructorName.t
]
and class_type = [
  1. | `Resolved of Resolved.class_type
  2. | `Substituted of class_type
  3. | `Local of Ident.path_class_type * bool
  4. | `Identifier of Odoc_model.Paths.Identifier.Path.ClassType.t * bool
  5. | `Dot of module_ * string
  6. | `Class of Resolved.parent * Odoc_model.Names.ClassName.t
  7. | `ClassType of Resolved.parent * Odoc_model.Names.ClassTypeName.t
]