1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5411
this.
Value
= value;
21 references to Value
Microsoft.CodeAnalysis.CSharp (21)
Binder\DecisionDagBuilder.cs (10)
1747
return resultForRelation(t.Relation, t.
Value
);
2011
handleRelationWithValue(r2.Relation, r2.
Value
,
2884
return $"?{d.Kind}({tempName(d.Input)} {operatorName} {r.
Value
})";
3466
Debug.Assert(t.
Value
.Discriminator == ConstantValueTypeDiscriminator.Int32);
3468
Debug.Assert(t.
Value
.Int32Value >= 0);
3469
if (t.
Value
.Int32Value == 0)
3484
case BoundDagRelationalTest t when !t.
Value
.IsBad:
3485
Debug.Assert(t.
Value
.Discriminator == ConstantValueTypeDiscriminator.Int32);
3486
return knownResult(t.Relation, t.
Value
, offset) ??
3487
new One(new BoundDagRelationalTest(t.Syntax, t.OperatorKind, safeAdd(t.
Value
, offset), lengthTemp));
Binder\PatternExplainer.cs (1)
739
addRelation(r.Relation, r.
Value
);
BoundTree\BoundDagRelationalTest.cs (1)
14
return Update(OperatorKind,
Value
, input);
BoundTree\BoundDagTest.cs (3)
40
return x.Relation == y.Relation && x.
Value
.Equals(y.
Value
);
130
return $"{r.Input.GetDebuggerDisplay()} {operatorName} {r.
Value
.GetValueToDisplay()}";
BoundTree\BoundDecisionDag.cs (1)
195
return f.Related(d.Relation.Operator(), inputConstant, d.
Value
);
Generated\BoundNodes.xml.Generated.cs (3)
5422
if (operatorKind != this.OperatorKind || value != this.
Value
|| input != this.Input)
12013
return node.Update(node.OperatorKind, node.
Value
, input);
16702
new TreeDumperNode("value", node.
Value
, null),
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (1)
583
return ValueDispatchNode.RelationalDispatch.CreateBalanced(testNode.Syntax, relational.
Value
, relational.OperatorKind, whenTrue: whenTrue, whenFalse: whenFalse);
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (1)
389
return MakeRelationalTest(d.Syntax, input, d.OperatorKind, d.
Value
);