public GeneratorUnaryOperation(IUnaryOperation operation) { Type = operation.Type; Operand = GeneratorDynamicProperty.ConvertOperation(operation.Operand); }
public GeneratorBinaryOperation(IBinaryOperation operation) { Type = operation.Type; Operand1 = GeneratorDynamicProperty.ConvertOperation(operation.Operand1); Operand2 = GeneratorDynamicProperty.ConvertOperation(operation.Operand2); }