1 write to OperatorResultKind
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1905
this.
OperatorResultKind
= operatorResultKind;
10 references to OperatorResultKind
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\Optimizer.cs (1)
1583
return node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.
OperatorResultKind
, @checked: node.Checked, node.Type);
FlowAnalysis\NullableWalker.cs (2)
5618
var (resultType, leftState) = node.
OperatorResultKind
switch
5626
_ => throw ExceptionUtilities.UnexpectedValue(node.
OperatorResultKind
),
Generated\BoundNodes.xml.Generated.cs (5)
1922
if (leftOperand != this.LeftOperand || rightOperand != this.RightOperand || leftPlaceholder != this.LeftPlaceholder || leftConversion != this.LeftConversion || operatorResultKind != this.
OperatorResultKind
|| @checked != this.Checked || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11070
return node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.
OperatorResultKind
, node.Checked, type);
12832
updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.
OperatorResultKind
, node.Checked, infoAndType.Type!);
12837
updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.
OperatorResultKind
, node.Checked, node.Type);
15371
new TreeDumperNode("operatorResultKind", node.
OperatorResultKind
, null),
Lowering\LocalRewriter\LocalRewriter_NullCoalescingOperator.cs (1)
19
return MakeNullCoalescingOperator(node.Syntax, rewrittenLeft, rewrittenRight, node.LeftPlaceholder, node.LeftConversion, node.
OperatorResultKind
, rewrittenResultType);
Lowering\SpillSequenceSpiller.cs (1)
1260
return UpdateExpression(builder, node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.
OperatorResultKind
, @checked: node.Checked, node.Type));