Module Cpath.Cpath

type module_ = [
| `Resolved of Resolved.module_
| `Substituted of module_
| `Local of Ident.path_module * bool
| `Identifier of Odoc_model.Paths.Identifier.Path.Module.t * bool
| `Root of string
| `Forward of string
| `Dot of module_ * string
| `Module of Resolved.parent * Odoc_model.Names.ModuleName.t
| `Apply of module_ * module_
]
and module_type = [
| `Resolved of Resolved.module_type
| `Substituted of module_type
| `Local of Ident.module_type * bool
| `Identifier of Odoc_model.Paths.Identifier.ModuleType.t * bool
| `Dot of module_ * string
| `ModuleType of Resolved.parent * Odoc_model.Names.ModuleTypeName.t
]
and type_ = [
| `Resolved of Resolved.type_
| `Substituted of type_
| `Local of Ident.path_type * bool
| `Identifier of Odoc_model.Paths.Identifier.Path.Type.t * bool
| `Dot of module_ * string
| `Type of Resolved.parent * Odoc_model.Names.TypeName.t
| `Class of Resolved.parent * Odoc_model.Names.ClassName.t
| `ClassType of Resolved.parent * Odoc_model.Names.ClassTypeName.t
]
and class_type = [
| `Resolved of Resolved.class_type
| `Substituted of class_type
| `Local of Ident.path_class_type * bool
| `Identifier of Odoc_model.Paths.Identifier.Path.ClassType.t * bool
| `Dot of module_ * string
| `Class of Resolved.parent * Odoc_model.Names.ClassName.t
| `ClassType of Resolved.parent * Odoc_model.Names.ClassTypeName.t
]