1 instantiation of BoundForEachDeconstructStep
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4100
var result = new
BoundForEachDeconstructStep
(this.Syntax, deconstructionAssignment, targetPlaceholder, this.HasErrors);
22 references to BoundForEachDeconstructStep
Microsoft.CodeAnalysis.CSharp (22)
Binder\ForEachLoopBinder.cs (1)
276
BoundForEachDeconstructStep
deconstructStep = null;
Compilation\MemberSemanticModel.cs (1)
1024
var
boundDeconstruction = boundForEach.DeconstructionOpt;
Generated\BoundNodes.xml.Generated.cs (15)
4028
public BoundForEachStatement(SyntaxNode syntax, ForEachEnumeratorInfo? enumeratorInfoOpt, BoundValuePlaceholder? elementPlaceholder, BoundExpression? elementConversion, BoundTypeExpression iterationVariableType, ImmutableArray<LocalSymbol> iterationVariables, BoundExpression? iterationErrorExpressionOpt, BoundExpression expression,
BoundForEachDeconstructStep
? deconstructionOpt, BoundAwaitableInfo? awaitOpt, BoundStatement body, LabelSymbol breakLabel, LabelSymbol continueLabel, bool hasErrors = false)
4058
public
BoundForEachDeconstructStep
? DeconstructionOpt { get; }
4065
public BoundForEachStatement Update(ForEachEnumeratorInfo? enumeratorInfoOpt, BoundValuePlaceholder? elementPlaceholder, BoundExpression? elementConversion, BoundTypeExpression iterationVariableType, ImmutableArray<LocalSymbol> iterationVariables, BoundExpression? iterationErrorExpressionOpt, BoundExpression expression,
BoundForEachDeconstructStep
? deconstructionOpt, BoundAwaitableInfo? awaitOpt, BoundStatement body, LabelSymbol breakLabel, LabelSymbol continueLabel)
4096
public
BoundForEachDeconstructStep
Update(BoundDeconstructionAssignmentOperator deconstructionAssignment, BoundDeconstructValuePlaceholder targetPlaceholder)
4100
var
result = new BoundForEachDeconstructStep(this.Syntax, deconstructionAssignment, targetPlaceholder, this.HasErrors);
9071
return VisitForEachDeconstructStep((
BoundForEachDeconstructStep
)node, arg);
9437
public virtual R VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node, A arg) => this.DefaultVisit(node, arg);
9673
public virtual BoundNode? VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node) => this.DefaultVisit(node);
10214
public override BoundNode? VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node)
11493
BoundForEachDeconstructStep
? deconstructionOpt = (
BoundForEachDeconstructStep
?)this.Visit(node.DeconstructionOpt);
11498
public override BoundNode? VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node)
13589
BoundForEachDeconstructStep
? deconstructionOpt = (
BoundForEachDeconstructStep
?)this.Visit(node.DeconstructionOpt);
16040
public override TreeDumperNode VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node, object? arg) => new TreeDumperNode("forEachDeconstructStep", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (5)
143
BoundForEachDeconstructStep
? deconstruction,
591
BoundForEachDeconstructStep
? deconstructionOpt,
798
BoundForEachDeconstructStep
? deconstruction,
887
BoundForEachDeconstructStep
? deconstruction,
1036
BoundForEachDeconstructStep
? deconstruction,