1 write to OperatorResultKind
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1942this.OperatorResultKind = operatorResultKind;
10 references to OperatorResultKind
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\Optimizer.cs (1)
1594return node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, @checked: node.Checked, node.Type);
FlowAnalysis\NullableWalker.cs (2)
6108var (resultType, leftState) = node.OperatorResultKind switch 6116_ => throw ExceptionUtilities.UnexpectedValue(node.OperatorResultKind),
Generated\BoundNodes.xml.Generated.cs (5)
1959if (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)) 11262return node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.Checked, type); 13147updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.Checked, infoAndType.Type!); 13152updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.Checked, node.Type); 15694new 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)
1273return UpdateExpression(builder, node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, @checked: node.Checked, node.Type));