1 write to Relation
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8718
this.
Relation
= relation;
11 references to Relation
Microsoft.CodeAnalysis.CSharp (11)
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
1092
return relationalPattern.Update(relationalPattern.
Relation
, relationalPattern.Value, relationalPattern.ConstantValue, unionMatchingMode: UnionMatchingMode.None, inputType, relationalPattern.NarrowedType);
Binder\DecisionDagBuilder.cs (2)
1191
IConstantValueSet? values = fac?.Related(rel.
Relation
.Operator(), rel.ConstantValue);
1198
tests.Add(new Tests.One(new BoundDagRelationalTest(rel.Syntax, rel.
Relation
, rel.ConstantValue, output, rel.HasErrors)));
Binder\UnionMatchingRewriter.cs (1)
191
node.Update(node.
Relation
, node.Value, node.ConstantValue, unionMatchingMode: UnionMatchingMode.None, inputType: ObjectType, narrowedType: node.NarrowedType));
BoundTree\BoundNode_Source.cs (2)
462
string relation = (relationalPattern.
Relation
& BinaryOperatorKind.OpMask) switch
468
_ => relationalPattern.
Relation
.ToString()
Generated\BoundNodes.xml.Generated.cs (4)
8738
if (relation != this.
Relation
|| value != this.Value || constantValue != this.ConstantValue || unionMatchingMode != this.UnionMatchingMode || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
12641
return node.Update(node.
Relation
, value, node.ConstantValue, node.UnionMatchingMode, inputType, narrowedType);
15333
return node.Update(node.
Relation
, value, node.ConstantValue, node.UnionMatchingMode, inputType, narrowedType);
17608
new TreeDumperNode("relation", node.
Relation
, null),
Operations\CSharpOperationFactory.cs (1)
2593
BinaryOperatorKind operatorKind = Helper.DeriveBinaryOperatorKind(boundRelationalPattern.
Relation
);