1 write to OperatorResultKind
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1905this.OperatorResultKind = operatorResultKind;
10 references to OperatorResultKind
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\Optimizer.cs (1)
1583return node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, @checked: node.Checked, node.Type);
FlowAnalysis\NullableWalker.cs (2)
5502var (resultType, leftState) = node.OperatorResultKind switch 5510_ => throw ExceptionUtilities.UnexpectedValue(node.OperatorResultKind),
Generated\BoundNodes.xml.Generated.cs (5)
1922if (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)) 11068return node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.Checked, type); 12830updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.Checked, infoAndType.Type!); 12835updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.Checked, node.Type); 15369new TreeDumperNode("operatorResultKind", node.OperatorResultKind, null),
Lowering\LocalRewriter\LocalRewriter_NullCoalescingOperator.cs (1)
19return MakeNullCoalescingOperator(node.Syntax, rewrittenLeft, rewrittenRight, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, rewrittenResultType);
Lowering\SpillSequenceSpiller.cs (1)
1260return UpdateExpression(builder, node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, @checked: node.Checked, node.Type));