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