Module Statement.DoWhile

type t('M, 'T) = {
  1. body: Statement.t('M, 'T),
  2. test: Expression.t('M, 'T),
  3. comments: option(Syntax.t('M, unit)),
};