Пример #1
0
 internal UnaryOp(UnaryExpression expression)
     : this() {
     _op = (unaryop)Convert(expression.Op);
     _operand = Convert(expression.Expression);
 }
Пример #2
0
 public UnaryOp(unaryop op, expr operand, [Optional]int? lineno, [Optional]int? col_offset)
     : this()
 {
     _op = op;
     _operand = operand;
     _lineno = lineno;
     _col_offset = col_offset;
 }