/**
 * Enum representing the kinds of unary operators.
 */
export enum UnaryOperatorKind {
  /**
   * Represents the unary plus operator.
   */
  UNARY_PLUS,
  /**
   * Represents the unary negation operator.
   */
  UNARY_NEGATION,
}
