Mod_typingSourceMain functions for translating module entries
translate_module produces a module_body out of a module_entry. In the output fields:
mod_expr is Abstract for a MType entry, or Algebraic for MExpr.mod_type_alg is None only for a MExpr without explicit signature.val translate_module :
Environ.env ->
Names.ModPath.t ->
Entries.inline ->
Entries.module_entry ->
Declarations.module_body * Univ.Constraint.ttranslate_modtype produces a module_type_body whose mod_type_alg cannot be None (and of course mod_expr is Abstract).
val translate_modtype :
Environ.env ->
Names.ModPath.t ->
Entries.inline ->
Entries.module_type_entry ->
Declarations.module_type_body * Univ.Constraint.tLow-level function for translating a module struct entry :
ModPath.t is given, otherwise to a module type.type 'alg translation =
Declarations.module_signature
* 'alg
* Mod_subst.delta_resolver
* Univ.Constraint.tval translate_mse :
Environ.env ->
Names.ModPath.t option ->
Entries.inline ->
Entries.module_struct_entry ->
Declarations.module_alg_expr translationFrom an already-translated (or interactive) implementation and an (optional) signature entry, produces a final module_body
val finalize_module :
Environ.env ->
Names.ModPath.t ->
Declarations.module_expression option translation ->
(Entries.module_type_entry * Entries.inline) option ->
Declarations.module_body * Univ.Constraint.ttranslate_mse_incl translate the mse of a module or module type given to an Include
val translate_mse_incl :
bool ->
Environ.env ->
Names.ModPath.t ->
Entries.inline ->
Entries.module_struct_entry ->
unit translation