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