15 references to BoundBinaryOperator
Microsoft.CodeAnalysis.CSharp (15)
Compiler\MethodBodySynthesizer.cs (1)
499
BoundExpression loopExitCondition = new
BoundBinaryOperator
(syntax,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (6)
542
new
BoundBinaryOperator
(syntax, operatorKind, constantValueOpt: null, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Viable, loweredLeft, loweredRight, type);
2039
return new
BoundBinaryOperator
(syntax, operatorKind, constantValueOpt: null, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Empty, loweredLeft, loweredRight, type);
2049
? new
BoundBinaryOperator
(syntax, operatorKind, null, method, constrainedToTypeOpt: null, default(LookupResultKind), loweredLeft, loweredRight, method.ReturnType)
2173
loweredRight = new
BoundBinaryOperator
(
2186
? new
BoundBinaryOperator
(
2298
return new
BoundBinaryOperator
(
Lowering\LocalRewriter\LocalRewriter_Call.cs (1)
478
rewrittenBoundCall = new
BoundBinaryOperator
(
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (5)
461
rewrittenCondition: new
BoundBinaryOperator
(forEachSyntax,
663
BoundExpression exitCondition = new
BoundBinaryOperator
(
959
BoundExpression exitCondition = new
BoundBinaryOperator
(
1163
BoundExpression exitCondition = new
BoundBinaryOperator
(
1258
right: new
BoundBinaryOperator
(syntax,
Lowering\LocalRewriter\LocalRewriter_StringConcat.cs (1)
610
currentResult = new
BoundBinaryOperator
(current.Syntax, current.OperatorKind, constantValueOpt: null, method, constrainedToTypeOpt: null, default(LookupResultKind), currentResult, right, current.Type);
Lowering\SyntheticBoundNodeFactory.cs (1)
645
return new
BoundBinaryOperator
(this.Syntax, kind, ConstantValue.NotAvailable, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Viable, left, right, type) { WasCompilerGenerated = true };