Module Component.Signature

type item =
| Module of Ident.module_ * recursive * Module.t Delayed.t
| ModuleSubstitution of Ident.module_ * ModuleSubstitution.t
| ModuleType of Ident.module_type * ModuleType.t Delayed.t
| ModuleTypeSubstitution of Ident.module_type * ModuleTypeSubstitution.t
| Type of Ident.type_ * recursive * TypeDecl.t Delayed.t
| TypeSubstitution of Ident.type_ * TypeDecl.t
| Exception of Ident.exception_ * Exception.t
| TypExt of Extension.t
| Value of Ident.value * Value.t Delayed.t
| Class of Ident.class_ * recursive * Class.t
| ClassType of Ident.class_type * recursive * ClassType.t
| Include of Include.t
| Open of Open.t
| Comment of CComment.docs_or_stop
type removed_item =
| RModule of Ident.module_ * Cpath.Resolved.module_
| RType of Ident.type_ * TypeExpr.t * TypeDecl.Equation.t
| RModuleType of Ident.module_type * ModuleType.expr
type t = {
items : item list;
compiled : bool;
removed : removed_item list;
doc : CComment.docs;
}