1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8719this.Value = value;
14 references to Value
Microsoft.CodeAnalysis.CSharp (14)
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
1092return relationalPattern.Update(relationalPattern.Relation, relationalPattern.Value, relationalPattern.ConstantValue, unionMatchingMode: UnionMatchingMode.None, inputType, relationalPattern.NarrowedType);
Binder\DecisionDagBuilder.cs (1)
1184var type = rel.Value.Type ?? inputInfo.GetInputType();
Binder\UnionMatchingRewriter.cs (1)
191node.Update(node.Relation, node.Value, node.ConstantValue, unionMatchingMode: UnionMatchingMode.None, inputType: ObjectType, narrowedType: node.NarrowedType));
BoundTree\BoundRelationalPattern.cs (2)
18NarrowedType.Equals(Value.Type, TypeCompareKind.AllIgnoreOptions)); 23NarrowedType.Equals(Value.Type, TypeCompareKind.AllIgnoreOptions));
FlowAnalysis\DefiniteAssignment.cs (1)
2040this.VisitRvalue(pat.Value);
FlowAnalysis\NullableWalker_Patterns.cs (1)
104Visit(node.Value);
FlowAnalysis\VariablesDeclaredWalker.cs (1)
107VisitRvalue(relationalPattern.Value);
Generated\BoundNodes.xml.Generated.cs (5)
8738if (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)) 11054this.Visit(node.Value); 12638BoundExpression value = (BoundExpression)this.Visit(node.Value); 15332BoundExpression value = (BoundExpression)this.Visit(node.Value); 17609new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }),
Operations\CSharpOperationFactory.cs (1)
2594IOperation value = Create(boundRelationalPattern.Value);