(operand: Expression)
| 165 | } |
| 166 | |
| 167 | export function negative(operand: Expression): UnaryExpression { |
| 168 | return { |
| 169 | type: 'unary', |
| 170 | operator: '-', |
| 171 | operand, |
| 172 | }; |
| 173 | } |
| 174 | |
| 175 | export function positive(operand: Expression): UnaryExpression { |
| 176 | return { |