BoolUnOp constructor

BoolUnOp(
  1. String value,
  2. Node<dynamic, LangVal<LangType>> child
)

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]);