3 references to MakeDynamicBinaryOperator
Microsoft.CodeAnalysis.CSharp (3)
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (2)
236
return _dynamicFactory.
MakeDynamicBinaryOperator
(operatorKind, loweredLeft, loweredRight, isCompoundAssignment, type).ToExpression();
666
var op = _dynamicFactory.
MakeDynamicBinaryOperator
(operatorKind, loweredLeft, loweredRight, isCompoundAssignment, type).ToExpression();
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (1)
555
BoundExpression dynamicResult = _dynamicFactory.
MakeDynamicBinaryOperator
(single.Kind, left, right, isCompoundAssignment: false, _compilation.DynamicType).ToExpression();