4 instantiations of BoundDagTypeEvaluation
Microsoft.CodeAnalysis.CSharp (4)
Binder\DecisionDagBuilder.cs (3)
381
var valueAsITupleEvaluation = new
BoundDagTypeEvaluation
(syntax, iTupleType, input);
520
var evaluation = new
BoundDagTypeEvaluation
(syntax, type, input);
734
var evaluation = new
BoundDagTypeEvaluation
(bin.Syntax, bin.NarrowedType, input);
Generated\BoundNodes.xml.Generated.cs (1)
5438
var result = new
BoundDagTypeEvaluation
(this.Syntax, type, input, this.HasErrors);
26 references to BoundDagTypeEvaluation
Microsoft.CodeAnalysis.CSharp (26)
Binder\DecisionDagBuilder.cs (9)
37
/// reads a property; and <see cref="
BoundDagTypeEvaluation
"/> converts a value from one type to another (which
381
var
valueAsITupleEvaluation = new BoundDagTypeEvaluation(syntax, iTupleType, input);
411
while (input.Source is
BoundDagTypeEvaluation
source && isDerivedType(source.Input.Type, symbol.ContainingType))
428
while (input.Source is
BoundDagTypeEvaluation
source)
520
var
evaluation = new BoundDagTypeEvaluation(syntax, type, input);
734
var
evaluation = new BoundDagTypeEvaluation(bin.Syntax, bin.NarrowedType, input);
1494
case (
BoundDagTypeEvaluation
, _):
1495
case (_,
BoundDagTypeEvaluation
):
1780
case
BoundDagTypeEvaluation
a:
Binder\PatternExplainer.cs (2)
381
evaluations[0] is
BoundDagTypeEvaluation
{ Type: var evaluationType } te &&
396
evaluations[0] is
BoundDagTypeEvaluation
{ Type: var evaluationType } te &&
BoundTree\BoundDagEvaluation.cs (1)
39
BoundDagTypeEvaluation
e => e.Type,
BoundTree\BoundDagTest.cs (1)
54
case
BoundDagTypeEvaluation
a:
FlowAnalysis\NullableWalker_Patterns.cs (2)
459
case
BoundDagTypeEvaluation
e:
640
&& t.Input.Source is
BoundDagTypeEvaluation
{ Input: { IsOriginalInput: true } })
Generated\BoundNodes.xml.Generated.cs (8)
5434
public
BoundDagTypeEvaluation
Update(TypeSymbol type, BoundDagTemp input)
5438
var
result = new BoundDagTypeEvaluation(this.Syntax, type, input, this.HasErrors);
9163
return VisitDagTypeEvaluation((
BoundDagTypeEvaluation
)node, arg);
9492
public virtual R VisitDagTypeEvaluation(
BoundDagTypeEvaluation
node, A arg) => this.DefaultVisit(node, arg);
9728
public virtual BoundNode? VisitDagTypeEvaluation(
BoundDagTypeEvaluation
node) => this.DefaultVisit(node);
10391
public override BoundNode? VisitDagTypeEvaluation(
BoundDagTypeEvaluation
node)
11751
public override BoundNode? VisitDagTypeEvaluation(
BoundDagTypeEvaluation
node)
16363
public override TreeDumperNode VisitDagTypeEvaluation(
BoundDagTypeEvaluation
node, object? arg) => new TreeDumperNode("dagTypeEvaluation", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (3)
200
case
BoundDagTypeEvaluation
t:
472
evaluation is
BoundDagTypeEvaluation
typeEvaluation1 &&
487
evaluation is
BoundDagTypeEvaluation
typeEvaluation2 &&