19 references to BoundBinaryOperator
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_Operators.cs (4)
809return new BoundBinaryOperator( 917return new BoundBinaryOperator(node, kind, ConstantValue.NotAvailable, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Empty, left, right, GetBinaryOperatorErrorType(kind, diagnostics, node), true); 1395return new BoundBinaryOperator(node, kind | BinaryOperatorKind.Bool, constantValue, methodOpt: null, constrainedToTypeOpt: null, 1405return new BoundBinaryOperator(node, kind, ConstantValue.NotAvailable, methodOpt: null, constrainedToTypeOpt: null,
Compiler\MethodBodySynthesizer.cs (1)
497BoundExpression loopExitCondition = new BoundBinaryOperator(syntax,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (6)
541new BoundBinaryOperator(syntax, operatorKind, constantValueOpt: null, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Viable, loweredLeft, loweredRight, type); 2038return new BoundBinaryOperator(syntax, operatorKind, constantValueOpt: null, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Empty, loweredLeft, loweredRight, type); 2048? new BoundBinaryOperator(syntax, operatorKind, null, method, constrainedToTypeOpt: null, default(LookupResultKind), loweredLeft, loweredRight, method.ReturnType) 2172loweredRight = new BoundBinaryOperator( 2185? new BoundBinaryOperator( 2297return new BoundBinaryOperator(
Lowering\LocalRewriter\LocalRewriter_Call.cs (1)
478rewrittenBoundCall = new BoundBinaryOperator(
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (5)
456rewrittenCondition: new BoundBinaryOperator(forEachSyntax, 658BoundExpression exitCondition = new BoundBinaryOperator( 954BoundExpression exitCondition = new BoundBinaryOperator( 1158BoundExpression exitCondition = new BoundBinaryOperator( 1253right: new BoundBinaryOperator(syntax,
Lowering\LocalRewriter\LocalRewriter_StringConcat.cs (1)
563currentResult = new BoundBinaryOperator(current.Syntax, current.OperatorKind, constantValueOpt: null, method, constrainedToTypeOpt: null, default(LookupResultKind), currentResult, right, current.Type);
Lowering\SyntheticBoundNodeFactory.cs (1)
644return new BoundBinaryOperator(this.Syntax, kind, ConstantValue.NotAvailable, methodOpt: null, constrainedToTypeOpt: null, LookupResultKind.Viable, left, right, type) { WasCompilerGenerated = true };