Module Expression.Unary

type operator =
  1. | Minus
  2. | Plus
  3. | Not
  4. | BitNot
  5. | Typeof
  6. | Void
  7. | Delete
  8. | Await
  9. | Nonnull
and ('M, 'T) t = {
  1. operator : operator;
  2. argument : ('M, 'T) Expression.t;
  3. 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