CSharpSourceEmitter.SourceEmitter.IsPostfix C# (CSharp) Method

IsPostfix() private method

private IsPostfix ( IBinaryOperation binaryOperation ) : bool
binaryOperation IBinaryOperation
return bool
    private bool IsPostfix(IBinaryOperation binaryOperation) {
      return binaryOperation.LeftOperand is ITargetExpression && ExpressionHelper.IsIntegralOne(binaryOperation.RightOperand) && binaryOperation.ResultIsUnmodifiedLeftOperand;
    }
SourceEmitter