Module Expression.Assignment

type operator =
  1. | PlusAssign
  2. | MinusAssign
  3. | MultAssign
  4. | ExpAssign
  5. | DivAssign
  6. | ModAssign
  7. | LShiftAssign
  8. | RShiftAssign
  9. | RShift3Assign
  10. | BitOrAssign
  11. | BitXorAssign
  12. | BitAndAssign
  13. | NullishAssign
  14. | AndAssign
  15. | OrAssign
;
and t('M, 'T) = {
  1. operator: option(operator),
  2. left: Pattern.t('M, 'T),
  3. right: Expression.t('M, 'T),
  4. comments: option(Syntax.t('M, unit)),
};
let pp_operator: Format.formatter => operator => unit;
let show_operator: operator => string;
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;