Expression.Unary
type operator =
| Minus
| Plus
| Not
| BitNot
| Typeof
| Void
| Delete
| Await
and ('M, 'T) t = {
operator : operator;
argument : ('M, 'T) Expression.t;
comments : ('M, unit) Syntax.t option;
}