Module Expression.Logical

type operator =
  1. | Or
  2. | And
  3. | NullishCoalesce
;
and t('M, 'T) = {
  1. operator: operator,
  2. left: Expression.t('M, 'T),
  3. right: Expression.t('M, 'T),
  4. comments: option(Syntax.t('M, unit)),
};