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