1 write to Relation
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8499this.Relation = relation;
7 references to Relation
Microsoft.CodeAnalysis.CSharp (7)
Binder\DecisionDagBuilder.cs (2)
688var values = fac?.Related(rel.Relation.Operator(), rel.ConstantValue); 695tests.Add(new Tests.One(new BoundDagRelationalTest(rel.Syntax, rel.Relation, rel.ConstantValue, output, rel.HasErrors)));
Generated\BoundNodes.xml.Generated.cs (4)
8513if (relation != this.Relation || value != this.Value || constantValue != this.ConstantValue || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 12155return node.Update(node.Relation, value, node.ConstantValue, inputType, narrowedType); 14825return node.Update(node.Relation, value, node.ConstantValue, inputType, narrowedType); 17033new TreeDumperNode("relation", node.Relation, null),
Operations\CSharpOperationFactory.cs (1)
2492BinaryOperatorKind operatorKind = Helper.DeriveBinaryOperatorKind(boundRelationalPattern.Relation);