Package ast.expr.unary

Types

Link copied to clipboard
class Not(val expression: Expression) : Expression

Represents the logical NOT operation, inverting a boolean value.

Link copied to clipboard
class UnaryMinus(val expression: Expression) : Expression

Represents the negation of a value.

Link copied to clipboard
class UnaryPlus(val expression: Expression) : Expression

Represents the value given, with no change applied. This exists only for symmetry with UnaryMinus.