Module Statement.DeclareNamespace

type id('M, 'T) =
  1. | Global(Identifier.t('M, 'M))
  2. | Local(Identifier.t('M, 'T))
;
let pp_id: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => id('M, 'T) => unit;
let show_id: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => id('M, 'T) => string;
type t('M, 'T) = {
  1. id: id('M, 'T),
  2. body: ('M, Block.t('M, 'T)),
  3. comments: option(Syntax.t('M, unit)),
};
let pp: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => t('M, 'T) => unit;
let show: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => t('M, 'T) => string;