BoolUnOp constructor
Constructs a boolean unary operation with the operator and operand.
Parameters:
value
: String representation of the operator ("!")child
: The operand expression to apply the operation to
Implementation
BoolUnOp(String value, Node<dynamic, LangVal> child)
: super(BoolOperator.fromString(value), [child]);