1 write to OperatorKind
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1737this.OperatorKind = operatorKind;
7 references to OperatorKind
Microsoft.CodeAnalysis.CSharp (7)
Generated\BoundNodes.xml.Generated.cs (5)
1752if (left != this.Left || right != this.Right || operatorKind != this.OperatorKind || operators != this.Operators || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11364return node.Update(left, right, node.OperatorKind, node.Operators, type); 13263updatedNode = node.Update(left, right, node.OperatorKind, node.Operators, infoAndType.Type!); 13268updatedNode = node.Update(left, right, node.OperatorKind, node.Operators, node.Type); 15827new 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)
1631BinaryOperatorKind operatorKind = Helper.DeriveBinaryOperatorKind(boundTupleBinaryOperator.OperatorKind);