1 write to OperatorKind
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1705this.OperatorKind = operatorKind;
7 references to OperatorKind
Microsoft.CodeAnalysis.CSharp (7)
Generated\BoundNodes.xml.Generated.cs (5)
1720if (left != this.Left || right != this.Right || operatorKind != this.OperatorKind || operators != this.Operators || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11026return node.Update(left, right, node.OperatorKind, node.Operators, type); 12751updatedNode = node.Update(left, right, node.OperatorKind, node.Operators, infoAndType.Type!); 12756updatedNode = node.Update(left, right, node.OperatorKind, node.Operators, node.Type); 15304new TreeDumperNode("operatorKind", node.OperatorKind, null),
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (1)
37var returnValue = RewriteTupleNestedOperators(node.Operators, newLeft, newRight, boolType, temps, node.OperatorKind);
Operations\CSharpOperationFactory.cs (1)
1565BinaryOperatorKind operatorKind = Helper.DeriveBinaryOperatorKind(boundTupleBinaryOperator.OperatorKind);