Module Statement.ForOf

type t('M, 'T) = {
  1. left: left('M, 'T),
  2. right: Expression.t('M, 'T),
  3. body: Statement.t('M, 'T),
  4. await: 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))
;