1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8736this.Value = value;
14 references to Value
Microsoft.CodeAnalysis.CSharp (14)
Binder\DecisionDagBuilder.cs (1)
1151var type = rel.Value.Type ?? inputInfo.GetInputType();
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\BoundRelationalPattern.cs (2)
17NarrowedType.Equals(Value.Type, TypeCompareKind.AllIgnoreOptions)); 22NarrowedType.Equals(Value.Type, TypeCompareKind.AllIgnoreOptions));
FlowAnalysis\DefiniteAssignment.cs (1)
2040this.VisitRvalue(pat.Value);
FlowAnalysis\NullableWalker_Patterns.cs (1)
102Visit(node.Value);
FlowAnalysis\VariablesDeclaredWalker.cs (1)
107VisitRvalue(relationalPattern.Value);
Generated\BoundNodes.xml.Generated.cs (5)
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)) 11057this.Visit(node.Value); 12636BoundExpression value = (BoundExpression)this.Visit(node.Value); 15323BoundExpression value = (BoundExpression)this.Visit(node.Value); 17598new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }),
Operations\CSharpOperationFactory.cs (1)
2594IOperation value = Create(boundRelationalPattern.Value);