Module Statement.ForIn

type t('M, 'T) = {
  1. left: left('M, 'T),
  2. right: Expression.t('M, 'T),
  3. body: Statement.t('M, 'T),
  4. each: bool,
  5. comments: option(Syntax.t('M, unit)),
};
and left('M, 'T) =
  1. | LeftDeclaration(('M, VariableDeclaration.t('M, 'T)))
  2. | LeftPattern(Pattern.t('M, 'T))
;
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;
let pp_left: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => left('M, 'T) => unit;
let show_left: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => left('M, 'T) => string;