1 instantiation of BoundForEachDeconstructStep
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4109
var result = new
BoundForEachDeconstructStep
(this.Syntax, deconstructionAssignment, targetPlaceholder, this.HasErrors);
22 references to BoundForEachDeconstructStep
Microsoft.CodeAnalysis.CSharp (22)
Binder\ForEachLoopBinder.cs (1)
268
BoundForEachDeconstructStep
deconstructStep = null;
Compilation\MemberSemanticModel.cs (1)
1023
var
boundDeconstruction = boundForEach.DeconstructionOpt;
Generated\BoundNodes.xml.Generated.cs (15)
4037
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, GeneratedLabelSymbol breakLabel, GeneratedLabelSymbol continueLabel, bool hasErrors = false)
4067
public
BoundForEachDeconstructStep
? DeconstructionOpt { get; }
4074
public BoundForEachStatement Update(ForEachEnumeratorInfo? enumeratorInfoOpt, BoundValuePlaceholder? elementPlaceholder, BoundExpression? elementConversion, BoundTypeExpression iterationVariableType, ImmutableArray<LocalSymbol> iterationVariables, BoundExpression? iterationErrorExpressionOpt, BoundExpression expression,
BoundForEachDeconstructStep
? deconstructionOpt, BoundAwaitableInfo? awaitOpt, BoundStatement body, GeneratedLabelSymbol breakLabel, GeneratedLabelSymbol continueLabel)
4105
public
BoundForEachDeconstructStep
Update(BoundDeconstructionAssignmentOperator deconstructionAssignment, BoundDeconstructValuePlaceholder targetPlaceholder)
4109
var
result = new BoundForEachDeconstructStep(this.Syntax, deconstructionAssignment, targetPlaceholder, this.HasErrors);
9044
return VisitForEachDeconstructStep((
BoundForEachDeconstructStep
)node, arg);
9410
public virtual R VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node, A arg) => this.DefaultVisit(node, arg);
9646
public virtual BoundNode? VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node) => this.DefaultVisit(node);
10187
public override BoundNode? VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node)
11395
BoundForEachDeconstructStep
? deconstructionOpt = (
BoundForEachDeconstructStep
?)this.Visit(node.DeconstructionOpt);
11400
public override BoundNode? VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node)
13438
BoundForEachDeconstructStep
? deconstructionOpt = (
BoundForEachDeconstructStep
?)this.Visit(node.DeconstructionOpt);
15888
public override TreeDumperNode VisitForEachDeconstructStep(
BoundForEachDeconstructStep
node, object? arg) => new TreeDumperNode("forEachDeconstructStep", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (5)
142
BoundForEachDeconstructStep
? deconstruction,
604
BoundForEachDeconstructStep
? deconstructionOpt,
811
BoundForEachDeconstructStep
? deconstruction,
900
BoundForEachDeconstructStep
? deconstruction,
1049
BoundForEachDeconstructStep
? deconstruction,