13 references to BoundNullCoalescingOperator
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Operators.cs (8)
5403
return new
BoundNullCoalescingOperator
(node, leftOperand, rightOperand,
5418
return new
BoundNullCoalescingOperator
(node, leftOperand, rightOperand,
5427
return new
BoundNullCoalescingOperator
(node, leftOperand, rightOperand,
5483
return new
BoundNullCoalescingOperator
(node, leftOperand, rightOperand,
5501
return new
BoundNullCoalescingOperator
(node, leftOperand, convertedRightOperand,
5518
return new
BoundNullCoalescingOperator
(node, leftOperand, convertedRightOperand,
5570
return new
BoundNullCoalescingOperator
(node, leftOperand, rightOperand, leftPlaceholder, leftConversion, resultKind, @checked: CheckOverflowAtRuntime, optRightType);
5584
return new
BoundNullCoalescingOperator
(node, leftOperand, rightOperand, leftPlaceholder, leftConversion, resultKind, @checked: CheckOverflowAtRuntime, optRightType);
Generated\BoundNodes.xml.Generated.cs (1)
1914
var result = new
BoundNullCoalescingOperator
(this.Syntax, leftOperand, rightOperand, leftPlaceholder, leftConversion, operatorResultKind, @checked, type, this.HasErrors);
Lowering\LocalRewriter\LocalRewriter_NullCoalescingOperator.cs (2)
56
return new
BoundNullCoalescingOperator
(syntax, rewrittenLeft, rewrittenRight, leftPlaceholder, leftConversion, resultKind, @checked: false, rewrittenResultType);
96
return new
BoundNullCoalescingOperator
(syntax, rewrittenLeft, rewrittenRight, leftPlaceholder: null, leftConversion: null, resultKind, @checked: false, rewrittenResultType);
Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs (1)
197
result = new
BoundNullCoalescingOperator
(result.Syntax, result, _factory.StringLiteral(""), leftPlaceholder: placeholder, leftConversion: placeholder, BoundNullCoalescingOperatorResultKind.LeftType, @checked: false, result.Type) { WasCompilerGenerated = true };
Lowering\SyntheticBoundNodeFactory.cs (1)
929
return new
BoundNullCoalescingOperator
(Syntax, left, right, leftPlaceholder: null, leftConversion: null, BoundNullCoalescingOperatorResultKind.LeftType, @checked: false, left.Type) { WasCompilerGenerated = true };