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 ('M, 'T) t = {
  1. operator : operator option;
  2. left : ('M, 'T) Pattern.t;
  3. right : ('M, 'T) Expression.t;
  4. comments : ('M, unit) Syntax.t option;
}
val pp_operator : Format.formatter -> operator -> unit
val show_operator : operator -> string
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string