1 write to ConstantValue
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8737this.ConstantValue = constantValue;
9 references to ConstantValue
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder.cs (2)
1158IConstantValueSet? values = fac?.Related(rel.Relation.Operator(), rel.ConstantValue); 1165tests.Add(new Tests.One(new BoundDagRelationalTest(rel.Syntax, rel.Relation, rel.ConstantValue, output, rel.HasErrors)));
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
1022return relationalPattern.Update(relationalPattern.Relation, relationalPattern.Value, relationalPattern.ConstantValue, isUnionMatching: false, inputType, relationalPattern.NarrowedType);
Binder\UnionMatchingRewriter.cs (1)
192node.Update(node.Relation, node.Value, node.ConstantValue, isUnionMatching: false, inputType: ObjectType, narrowedType: node.NarrowedType));
BoundTree\BoundNode_Source.cs (1)
473appendConstantValue(relationalPattern.ConstantValue);
Generated\BoundNodes.xml.Generated.cs (4)
8755if (relation != this.Relation || value != this.Value || constantValue != this.ConstantValue || isUnionMatching != this.IsUnionMatching || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 12639return node.Update(node.Relation, value, node.ConstantValue, node.IsUnionMatching, inputType, narrowedType); 15324return node.Update(node.Relation, value, node.ConstantValue, node.IsUnionMatching, inputType, narrowedType); 17599new TreeDumperNode("constantValue", node.ConstantValue, null),