UnaryOpNode

data class UnaryOpNode(val operator: String, val operand: ASTNode, val position: Position) : ASTNode

Unary operation.

Operators: -, not Example: -x, not active

Constructors

Link copied to clipboard
constructor(operator: String, operand: ASTNode, position: Position)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val position: Position