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