public UnOp(Pos tp, UnOpType _op) : base(tp) { type = _op; }
public UnOpNode(ExprNode e, UnOpType operation) { expr = e; Op = operation; }